Skip to content

Commit

Permalink
Merge branch 'main' into feature/algorithmic-anonymous-sessions
Browse files Browse the repository at this point in the history
  • Loading branch information
byewokko committed Jul 31, 2023
2 parents d479f4d + ac54ef0 commit 00eb414
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

### Fix
- Validate client session expiration (#237, PLUM Sprint 230714)
- Add `editable` field in provider info (#238, PLUM Sprint 230728)

### Features
- Seacat Auth listens on ports 3081 and 8900 by default (#230, PLUM Sprint 230714)
Expand Down
11 changes: 6 additions & 5 deletions seacatauth/credentials/providers/abc.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,14 @@ def __init__(self, provider_id, config_section_name, config=None):


def get_info(self) -> dict:
'''
"""
Get info about this provider.
'''
"""
return {
'_type': self.Type,
'_provider_id': self.ProviderID,
'_order': self.Order,
"_type": self.Type,
"_provider_id": self.ProviderID,
"_order": self.Order,
"editable": self.Editable,
}


Expand Down

0 comments on commit 00eb414

Please sign in to comment.