allianceauth/services/auth_hooks.py
Adarnof 97fe2ddfd0 Move templates and urls to apps.
Implement url hooks.
Many apps are now removable.
Default to assuming services have been migrated.
2017-06-07 22:49:46 -04:00

23 lines
656 B
Python

from services.hooks import MenuItemHook
from alliance_auth import hooks
from services.hooks import ServicesHook
class Services(MenuItemHook):
def __init__(self):
MenuItemHook.__init__(self,
'Services',
'fa fa-cogs fa-fw grayiconecolor',
'auth_services', 100)
def render(self, request):
for svc in ServicesHook.get_services():
if svc.service_active_for_user(request.user):
return MenuItemHook.render(self, request)
return ''
@hooks.register('menu_item_hook')
def register_menu():
return Services()