Replace Client.approved field by static value for now

master
informatic 2018-04-10 15:40:30 +02:00
parent 3c9d0dc919
commit 757beda134
1 changed files with 3 additions and 1 deletions

View File

@ -44,7 +44,9 @@ class Client(db.Model):
redirect_uris_ = db.Column(db.Text)
default_scopes_ = db.Column(db.Text)
approved = db.Column(db.Boolean, default=False)
# TODO
# approved = db.Column(db.Boolean, default=False)
approved = True
@property
def client_type(self):