Commit f73555b 1 parent 3b5785e commit f73555b Copy full SHA for f73555b
File tree 2 files changed +15
-1
lines changed
2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,20 @@ def identify(self):
23
23
if config .free_anonymous_access ():
24
24
return
25
25
26
+ authenticators = p .PluginImplementations (p .IAuthenticator )
27
+ if authenticators :
28
+ for item in authenticators :
29
+ if item is self :
30
+ continue
31
+ response = item .identify ()
32
+ if response :
33
+ return response
34
+ try :
35
+ if tk .g .user :
36
+ break
37
+ except AttributeError :
38
+ continue
39
+
26
40
# try default identifier if no extensions have identified user up until
27
41
# now
28
42
if not getattr (tk .g , "user" , None ):
Original file line number Diff line number Diff line change 1
1
[metadata]
2
2
name = ckanext-vip-portal
3
- version = 0.0.6
3
+ version = 0.1.0
4
4
description =
5
5
long_description = file: README.md
6
6
long_description_content_type = text/markdown
You can’t perform that action at this time.
0 commit comments