Mirror of https://github.com/roostorg/coop github.com/roostorg/coop
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 11 lines 369 B view raw
1import { type OrgSettingsPg } from '../orgSettingsService/index.js'; 2import { type UserManagementPg } from '../userManagementService/index.js'; 3 4export type SSOServicePg = { 5 users: Pick<UserManagementPg['public.users'], 'email' | 'org_id'>; 6 orgs: { id: string }; 7 org_settings: Pick< 8 OrgSettingsPg['public.org_settings'], 9 'saml_enabled' | 'org_id' 10 >; 11};