This repository has been archived on 2022-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
outline/app/models/Team.js
Tom Moor ed2a42ac27 chore: Migrate authentication to new tables (#1929)
This work provides a foundation for a more pluggable authentication system such as the one outlined in #1317.

closes #1317
2021-03-09 12:22:08 -08:00

23 lines
380 B
JavaScript

// @flow
import { computed } from "mobx";
import BaseModel from "./BaseModel";
class Team extends BaseModel {
id: string;
name: string;
avatarUrl: string;
sharing: boolean;
documentEmbeds: boolean;
guestSignin: boolean;
subdomain: ?string;
domain: ?string;
url: string;
@computed
get signinMethods(): string {
return "SSO";
}
}
export default Team;