diff --git a/priv/graphql/schemas/user/private.gql b/priv/graphql/schemas/user/private.gql deleted file mode 100644 index 258d0416da..0000000000 --- a/priv/graphql/schemas/user/private.gql +++ /dev/null @@ -1,15 +0,0 @@ -""" -Allow user to manage their private storage. -""" -type PrivateUserMutation @protected{ - "Add a new contact to a user's roster without subscription" - setPrivate(data: String!): String -} - -""" -Allow user to get information about user roster/contacts. -""" -type PrivateUserQuery @protected{ - "Get the user's roster/contacts" - getContacts(): String -}