fix: use simple string instead of UUID for special role getters
upstream now uses proper UUID but we still can't do that here
This commit is contained in:
parent
68be73b256
commit
57262c9ff2
|
@ -82,6 +82,24 @@ class RattailAuthHandler(base.AuthHandler, MergeMixin):
|
||||||
# TODO: should make sure no callers are expecting this!
|
# TODO: should make sure no callers are expecting this!
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
# nb. must use simple string here, instead of proper UUID
|
||||||
|
def get_role_administrator(self, session, **kwargs):
|
||||||
|
""" """
|
||||||
|
return self._special_role(session, 'd937fa8a965611dfa0dd001143047286',
|
||||||
|
"Administrator")
|
||||||
|
|
||||||
|
# nb. must use simple string here, instead of proper UUID
|
||||||
|
def get_role_anonymous(self, session, **kwargs):
|
||||||
|
""" """
|
||||||
|
return self._special_role(session, 'f8a27c98965a11dfaff7001143047286',
|
||||||
|
"Anonymous")
|
||||||
|
|
||||||
|
# nb. must use simple string here, instead of proper UUID
|
||||||
|
def get_role_authenticated(self, session, **kwargs):
|
||||||
|
""" """
|
||||||
|
return self._special_role(session, 'b765a9cc331a11e6ac2a3ca9f40bc550',
|
||||||
|
"Authenticated")
|
||||||
|
|
||||||
##############################
|
##############################
|
||||||
# extra methods
|
# extra methods
|
||||||
##############################
|
##############################
|
||||||
|
|
Loading…
Reference in a new issue