1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-11-24 23:01:05 +03:00

Simple UI to reset cross-signing keys

This commit is contained in:
Quentin Gliech
2023-11-23 12:22:05 +01:00
parent f8d745d308
commit b7c093c2a2
5 changed files with 202 additions and 0 deletions

View File

@@ -1438,6 +1438,18 @@ export type AddEmailMutation = {
};
};
export type AllowCrossSigningResetMutationVariables = Exact<{
userId: Scalars["ID"]["input"];
}>;
export type AllowCrossSigningResetMutation = {
__typename?: "Mutation";
allowUserCrossSigningReset: {
__typename?: "AllowUserCrossSigningResetPayload";
user?: { __typename?: "User"; id: string } | null;
};
};
export type UserEmailListQueryQueryVariables = Exact<{
userId: Scalars["ID"]["input"];
first?: InputMaybe<Scalars["Int"]["input"]>;
@@ -3168,6 +3180,75 @@ export const AddEmailDocument = {
},
],
} as unknown as DocumentNode<AddEmailMutation, AddEmailMutationVariables>;
export const AllowCrossSigningResetDocument = {
kind: "Document",
definitions: [
{
kind: "OperationDefinition",
operation: "mutation",
name: { kind: "Name", value: "AllowCrossSigningReset" },
variableDefinitions: [
{
kind: "VariableDefinition",
variable: {
kind: "Variable",
name: { kind: "Name", value: "userId" },
},
type: {
kind: "NonNullType",
type: { kind: "NamedType", name: { kind: "Name", value: "ID" } },
},
},
],
selectionSet: {
kind: "SelectionSet",
selections: [
{
kind: "Field",
name: { kind: "Name", value: "allowUserCrossSigningReset" },
arguments: [
{
kind: "Argument",
name: { kind: "Name", value: "input" },
value: {
kind: "ObjectValue",
fields: [
{
kind: "ObjectField",
name: { kind: "Name", value: "userId" },
value: {
kind: "Variable",
name: { kind: "Name", value: "userId" },
},
},
],
},
},
],
selectionSet: {
kind: "SelectionSet",
selections: [
{
kind: "Field",
name: { kind: "Name", value: "user" },
selectionSet: {
kind: "SelectionSet",
selections: [
{ kind: "Field", name: { kind: "Name", value: "id" } },
],
},
},
],
},
},
],
},
},
],
} as unknown as DocumentNode<
AllowCrossSigningResetMutation,
AllowCrossSigningResetMutationVariables
>;
export const UserEmailListQueryDocument = {
kind: "Document",
definitions: [