diff --git a/changelog/unreleased/bugfix-ocm-invite-flow b/changelog/unreleased/bugfix-ocm-invite-flow new file mode 100644 index 00000000000..706b334157a --- /dev/null +++ b/changelog/unreleased/bugfix-ocm-invite-flow @@ -0,0 +1,6 @@ +Bugfix: OCM invite flow + +We've fixed the OCM invite flow and made it more user-friendly. + +https://github.com/owncloud/web/pull/11992 +https://github.com/owncloud/web/issues/11983 diff --git a/packages/web-app-ocm/src/schemas.ts b/packages/web-app-ocm/src/schemas.ts index 7b4005951a7..645c398af3d 100644 --- a/packages/web-app-ocm/src/schemas.ts +++ b/packages/web-app-ocm/src/schemas.ts @@ -11,13 +11,3 @@ export type InviteSchema = z.infer export const inviteListSchema = z.array(inviteSchema) export type InviteListSchema = z.infer - -// Provider -export const providerSchema = z.object({ - domain: z.string(), - full_name: z.string() -}) -export type ProviderSchema = z.infer - -export const providerListSchema = z.array(providerSchema) -export type ProviderListSchema = z.infer diff --git a/packages/web-app-ocm/src/views/IncomingInvitations.vue b/packages/web-app-ocm/src/views/IncomingInvitations.vue index 70a2588d74c..fba93748098 100644 --- a/packages/web-app-ocm/src/views/IncomingInvitations.vue +++ b/packages/web-app-ocm/src/views/IncomingInvitations.vue @@ -1,59 +1,38 @@