Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Inherit all IAuthenticator methods #59

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 1 addition & 7 deletions ckanext/saml2auth/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class Saml2AuthPlugin(plugins.SingletonPlugin):
plugins.implements(plugins.IBlueprint)
plugins.implements(plugins.IConfigurable)
plugins.implements(plugins.ITemplateHelpers)
plugins.implements(plugins.IAuthenticator)
plugins.implements(plugins.IAuthenticator, inherit=True)

# ITemplateHelpers

Expand Down Expand Up @@ -95,12 +95,6 @@ def update_config(self, config_):

# IAuthenticator

def identify(self):
pass

def login(self):
pass

def logout(self):

response = _perform_slo()
Expand Down