Skip to content

Commit

Permalink
Merge pull request #59 from okfn/inherit-iauthenticator-methods
Browse files Browse the repository at this point in the history
Inherit all IAuthenticator methods
  • Loading branch information
duskobogdanovski authored Oct 5, 2021
2 parents 454412f + 8fbdb44 commit 4c70955
Showing 1 changed file with 1 addition and 7 deletions.
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

0 comments on commit 4c70955

Please sign in to comment.