~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to ivle/webapp/security/__init__.py

Merge from new-dispatch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
# Author: William Grant
19
19
 
20
20
from ivle.webapp.base.plugins import ViewPlugin
21
 
from ivle.webapp.security.views import LogoutView
 
21
from ivle.webapp.security.views import LoginView, LogoutView
22
22
 
23
23
class Plugin(ViewPlugin):
24
24
    """
25
25
    The Plugin class for the security plugin.
26
26
    """
27
27
    urls = [
28
 
        ('logout', LogoutView),
 
28
        ('+login', LoginView),
 
29
        ('+logout', LogoutView),
29
30
    ]