More AP C2S support
This commit is contained in:
parent
5cf54c2782
commit
7b506f2519
3 changed files with 93 additions and 7 deletions
|
@ -465,6 +465,10 @@ class IndieAuthAccessToken(Base):
|
|||
indieauth_authorization_request_id = Column(
|
||||
Integer, ForeignKey("indieauth_authorization_request.id"), nullable=True
|
||||
)
|
||||
indieauth_authorization_request = relationship(
|
||||
IndieAuthAuthorizationRequest,
|
||||
uselist=False,
|
||||
)
|
||||
|
||||
access_token = Column(String, nullable=False, unique=True, index=True)
|
||||
expires_in = Column(Integer, nullable=False)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue