feat: Authentication provider display (#4332)

* layout

* Refactor

* wip

* Quick changes to make this deployable without full management

* test
This commit is contained in:
Tom Moor
2022-10-24 17:01:40 -04:00
committed by GitHub
parent 434bb989cc
commit df46d3754a
13 changed files with 438 additions and 283 deletions

View File

@@ -0,0 +1,19 @@
import { observable } from "mobx";
import BaseModel from "./BaseModel";
import Field from "./decorators/Field";
class AuthenticationProvider extends BaseModel {
id: string;
displayName: string;
name: string;
isConnected: boolean;
@Field
@observable
isEnabled: boolean;
}
export default AuthenticationProvider;