This commit is contained in:
Aevann1 2021-07-25 23:59:20 +02:00
parent 4b89a5b6db
commit a4eeee5a11
68 changed files with 3376 additions and 2605 deletions

View file

@ -68,7 +68,6 @@ class ClientAuth(Base, Stndrd):
scope_update = Column(Boolean, default=False)
scope_delete = Column(Boolean, default=False)
scope_vote = Column(Boolean, default=False)
scope_guildmaster = Column(Boolean, default=False)
access_token = Column(String(128))
refresh_token = Column(String(128))
access_token_expire_utc = Column(Integer)
@ -86,7 +85,6 @@ class ClientAuth(Base, Stndrd):
output += "update," if self.scope_update else ""
output += "delete," if self.scope_delete else ""
output += "vote," if self.scope_vote else ""
output += "guildmaster," if self.scope_guildmaster else ""
output = output.rstrip(',')