mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-04-05 10:59:33 +00:00
Add a route to show what is deleted
This commit is contained in:
parent
736968b049
commit
e89b571ab2
@ -1309,9 +1309,9 @@ paths:
|
|||||||
application/json:
|
application/json:
|
||||||
schema:
|
schema:
|
||||||
$ref: "#/components/schemas/BasicResult"
|
$ref: "#/components/schemas/BasicResult"
|
||||||
/sec/user/{id}:
|
/sec/user/{username}:
|
||||||
delete:
|
delete:
|
||||||
operationId: "sec-user-delete-by-id"
|
operationId: "sec-user-delete-by-username"
|
||||||
tags: [ Collective ]
|
tags: [ Collective ]
|
||||||
summary: Delete a user.
|
summary: Delete a user.
|
||||||
description: |
|
description: |
|
||||||
@ -1319,7 +1319,7 @@ paths:
|
|||||||
security:
|
security:
|
||||||
- authTokenHeader: []
|
- authTokenHeader: []
|
||||||
parameters:
|
parameters:
|
||||||
- $ref: "#/components/parameters/id"
|
- $ref: "#/components/parameters/username"
|
||||||
responses:
|
responses:
|
||||||
200:
|
200:
|
||||||
description: Ok
|
description: Ok
|
||||||
@ -1327,6 +1327,27 @@ paths:
|
|||||||
application/json:
|
application/json:
|
||||||
schema:
|
schema:
|
||||||
$ref: "#/components/schemas/BasicResult"
|
$ref: "#/components/schemas/BasicResult"
|
||||||
|
/sec/user/{username}/deleteData:
|
||||||
|
get:
|
||||||
|
operationId: "sec-user-delete-data"
|
||||||
|
tags: [ Collective ]
|
||||||
|
summary: Shows some data that would be deleted if the user is deleted
|
||||||
|
description: |
|
||||||
|
Gets some data that would be deleted, when the user with the
|
||||||
|
given username is deleted. The `username` must be part of this
|
||||||
|
collective.
|
||||||
|
security:
|
||||||
|
- authTokenHeader: []
|
||||||
|
parameters:
|
||||||
|
- $ref: "#/components/parameters/username"
|
||||||
|
responses:
|
||||||
|
200:
|
||||||
|
description: Ok
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
$ref: "#/components/schemas/DeleteUserData"
|
||||||
|
|
||||||
/sec/user/changePassword:
|
/sec/user/changePassword:
|
||||||
post:
|
post:
|
||||||
operationId: "sec-user-change-password"
|
operationId: "sec-user-change-password"
|
||||||
@ -4068,6 +4089,23 @@ paths:
|
|||||||
|
|
||||||
components:
|
components:
|
||||||
schemas:
|
schemas:
|
||||||
|
DeleteUserData:
|
||||||
|
description: |
|
||||||
|
An excerpt of data that would be deleted when deleting the
|
||||||
|
associated user.
|
||||||
|
required:
|
||||||
|
- folders
|
||||||
|
- sentMails
|
||||||
|
properties:
|
||||||
|
folders:
|
||||||
|
type: array
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
format: ident
|
||||||
|
sentMails:
|
||||||
|
type: integer
|
||||||
|
format: int32
|
||||||
|
|
||||||
SecondFactor:
|
SecondFactor:
|
||||||
description: |
|
description: |
|
||||||
Provide a second factor for login.
|
Provide a second factor for login.
|
||||||
@ -6206,6 +6244,13 @@ components:
|
|||||||
required: true
|
required: true
|
||||||
schema:
|
schema:
|
||||||
type: string
|
type: string
|
||||||
|
username:
|
||||||
|
name: username
|
||||||
|
in: path
|
||||||
|
required: true
|
||||||
|
description: The username of a user of this collective
|
||||||
|
schema:
|
||||||
|
type: string
|
||||||
itemId:
|
itemId:
|
||||||
name: itemId
|
name: itemId
|
||||||
in: path
|
in: path
|
||||||
|
@ -43,6 +43,7 @@ module Api exposing
|
|||||||
, deleteSource
|
, deleteSource
|
||||||
, deleteTag
|
, deleteTag
|
||||||
, deleteUser
|
, deleteUser
|
||||||
|
, deleteUserData
|
||||||
, disableOtp
|
, disableOtp
|
||||||
, fileURL
|
, fileURL
|
||||||
, getAttachmentMeta
|
, getAttachmentMeta
|
||||||
@ -162,6 +163,7 @@ import Api.Model.CollectiveSettings exposing (CollectiveSettings)
|
|||||||
import Api.Model.ContactList exposing (ContactList)
|
import Api.Model.ContactList exposing (ContactList)
|
||||||
import Api.Model.CustomFieldList exposing (CustomFieldList)
|
import Api.Model.CustomFieldList exposing (CustomFieldList)
|
||||||
import Api.Model.CustomFieldValue exposing (CustomFieldValue)
|
import Api.Model.CustomFieldValue exposing (CustomFieldValue)
|
||||||
|
import Api.Model.DeleteUserData exposing (DeleteUserData)
|
||||||
import Api.Model.DirectionValue exposing (DirectionValue)
|
import Api.Model.DirectionValue exposing (DirectionValue)
|
||||||
import Api.Model.EmailSettings exposing (EmailSettings)
|
import Api.Model.EmailSettings exposing (EmailSettings)
|
||||||
import Api.Model.EmailSettingsList exposing (EmailSettingsList)
|
import Api.Model.EmailSettingsList exposing (EmailSettingsList)
|
||||||
@ -1467,6 +1469,15 @@ deleteUser flags user receive =
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
deleteUserData : Flags -> String -> (Result Http.Error DeleteUserData -> msg) -> Cmd msg
|
||||||
|
deleteUserData flags username receive =
|
||||||
|
Http2.authGet
|
||||||
|
{ url = flags.config.baseUrl ++ "/api/v1/sec/user/" ++ username ++ "/deleteData"
|
||||||
|
, account = getAccount flags
|
||||||
|
, expect = Http.expectJson receive Api.Model.DeleteUserData.decoder
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
--- Job Queue
|
--- Job Queue
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user