feat: support new auth methods for Tenants

- New Time scalar type is implemented on the Server
- Single Sign-On keys can now be generated
- Single Sign-On keys can be regenerated
- Single Sign-On keys now store the date they were generated on.
- Initial implementation of `AuthenticationTargetFilter`'s
This commit is contained in:
Wyatt Johnson
2018-10-19 16:05:58 -06:00
parent 9436600e31
commit fa72d5deda
9 changed files with 249 additions and 5 deletions
+2 -1
View File
@@ -37,7 +37,7 @@ async function main() {
'import { Cursor } from "talk-server/models/connection";',
'import TenantContext from "talk-server/graph/tenant/context";',
],
customScalarType: { Cursor: "Cursor", Time: "string" },
customScalarType: { Cursor: "Cursor", Time: "Date" },
},
},
{
@@ -48,6 +48,7 @@ async function main() {
importStatements: [
'import ManagementContext from "talk-server/graph/management/context";',
],
customScalarType: { Time: "Date" },
},
},
];