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:
Lance Edgar 2024-12-08 08:10:41 -06:00
parent 68be73b256
commit 57262c9ff2

View file

@ -82,6 +82,24 @@ class RattailAuthHandler(base.AuthHandler, MergeMixin):
# TODO: should make sure no callers are expecting this!
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
##############################