mirror of
https://github.com/gotson/komga.git
synced 2025-01-08 11:47:47 +08:00
chore(release): 0.102.0 [skip ci]
# [0.102.0](https://github.com/gotson/komga/compare/v0.101.2...v0.102.0) (2021-06-25) ### Features * **api:** store authentication activity ([de96e0d
](de96e0dcef
)), closes [#160](https://github.com/gotson/komga/issues/160) * **webui:** display authentication activity ([9d33602
](9d33602873
)), closes [#160](https://github.com/gotson/komga/issues/160)
This commit is contained in:
parent
9d33602873
commit
6b67484197
@ -1,3 +1,11 @@
|
||||
# [0.102.0](https://github.com/gotson/komga/compare/v0.101.2...v0.102.0) (2021-06-25)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **api:** store authentication activity ([de96e0d](https://github.com/gotson/komga/commit/de96e0dcef1312aaed0d253574734a9e027722ca)), closes [#160](https://github.com/gotson/komga/issues/160)
|
||||
* **webui:** display authentication activity ([9d33602](https://github.com/gotson/komga/commit/9d33602873b15668fe978dd66148287d4f9744dd)), closes [#160](https://github.com/gotson/komga/issues/160)
|
||||
|
||||
## [0.101.2](https://github.com/gotson/komga/compare/v0.101.1...v0.101.2) (2021-06-24)
|
||||
|
||||
|
||||
|
@ -1,2 +1,2 @@
|
||||
version=0.101.2
|
||||
version=0.102.0
|
||||
org.gradle.jvmargs=-Xmx2G -XX:MaxPermSize=2G
|
||||
|
@ -823,6 +823,52 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"PageAuthenticationActivityDto": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"number": {
|
||||
"format": "int32",
|
||||
"type": "integer"
|
||||
},
|
||||
"numberOfElements": {
|
||||
"format": "int32",
|
||||
"type": "integer"
|
||||
},
|
||||
"last": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"size": {
|
||||
"format": "int32",
|
||||
"type": "integer"
|
||||
},
|
||||
"totalPages": {
|
||||
"format": "int32",
|
||||
"type": "integer"
|
||||
},
|
||||
"pageable": {
|
||||
"$ref": "#/components/schemas/Pageable"
|
||||
},
|
||||
"sort": {
|
||||
"$ref": "#/components/schemas/Sort"
|
||||
},
|
||||
"first": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"content": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/components/schemas/AuthenticationActivityDto"
|
||||
}
|
||||
},
|
||||
"totalElements": {
|
||||
"format": "int64",
|
||||
"type": "integer"
|
||||
},
|
||||
"empty": {
|
||||
"type": "boolean"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ReadListRequestBookDto": {
|
||||
"type": "object",
|
||||
"required": [
|
||||
@ -1741,6 +1787,37 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"AuthenticationActivityDto": {
|
||||
"type": "object",
|
||||
"required": [
|
||||
"dateTime",
|
||||
"success"
|
||||
],
|
||||
"properties": {
|
||||
"dateTime": {
|
||||
"format": "date-time",
|
||||
"type": "string"
|
||||
},
|
||||
"success": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"ip": {
|
||||
"type": "string"
|
||||
},
|
||||
"userAgent": {
|
||||
"type": "string"
|
||||
},
|
||||
"error": {
|
||||
"type": "string"
|
||||
},
|
||||
"userId": {
|
||||
"type": "string"
|
||||
},
|
||||
"email": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ClaimStatus": {
|
||||
"type": "object",
|
||||
"required": [
|
||||
@ -2282,6 +2359,75 @@
|
||||
]
|
||||
}
|
||||
},
|
||||
"/api/v1/users/authentication-activity": {
|
||||
"get": {
|
||||
"operationId": "getAuthenticationActivity",
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "OK",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/PageAuthenticationActivityDto"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"400": {
|
||||
"description": "Bad Request",
|
||||
"content": {
|
||||
"*/*": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/ValidationErrorResponse"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"parameters": [
|
||||
{
|
||||
"schema": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"in": "query",
|
||||
"name": "unpaged",
|
||||
"required": false
|
||||
},
|
||||
{
|
||||
"schema": {
|
||||
"default": 0,
|
||||
"type": "integer"
|
||||
},
|
||||
"in": "query",
|
||||
"name": "page",
|
||||
"description": "Zero-based page index (0..N)"
|
||||
},
|
||||
{
|
||||
"schema": {
|
||||
"default": 20,
|
||||
"type": "integer"
|
||||
},
|
||||
"in": "query",
|
||||
"name": "size",
|
||||
"description": "The size of the page to be returned"
|
||||
},
|
||||
{
|
||||
"schema": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"in": "query",
|
||||
"name": "sort",
|
||||
"description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported."
|
||||
}
|
||||
],
|
||||
"tags": [
|
||||
"user-controller"
|
||||
]
|
||||
}
|
||||
},
|
||||
"/opds/v1.2/readlists": {
|
||||
"get": {
|
||||
"operationId": "getReadLists",
|
||||
@ -2595,6 +2741,75 @@
|
||||
]
|
||||
}
|
||||
},
|
||||
"/api/v1/users/me/authentication-activity": {
|
||||
"get": {
|
||||
"operationId": "getMyAuthenticationActivity",
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "OK",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/PageAuthenticationActivityDto"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"400": {
|
||||
"description": "Bad Request",
|
||||
"content": {
|
||||
"*/*": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/ValidationErrorResponse"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"parameters": [
|
||||
{
|
||||
"schema": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"in": "query",
|
||||
"name": "unpaged",
|
||||
"required": false
|
||||
},
|
||||
{
|
||||
"schema": {
|
||||
"default": 0,
|
||||
"type": "integer"
|
||||
},
|
||||
"in": "query",
|
||||
"name": "page",
|
||||
"description": "Zero-based page index (0..N)"
|
||||
},
|
||||
{
|
||||
"schema": {
|
||||
"default": 20,
|
||||
"type": "integer"
|
||||
},
|
||||
"in": "query",
|
||||
"name": "size",
|
||||
"description": "The size of the page to be returned"
|
||||
},
|
||||
{
|
||||
"schema": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"in": "query",
|
||||
"name": "sort",
|
||||
"description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported."
|
||||
}
|
||||
],
|
||||
"tags": [
|
||||
"user-controller"
|
||||
]
|
||||
}
|
||||
},
|
||||
"/opds/v1.2/books/{bookId}/file/*": {
|
||||
"get": {
|
||||
"description": "Download the book file.",
|
||||
|
Loading…
Reference in New Issue
Block a user