Compare commits
2 Commits
7e3e0d8f30
...
0e804db130
Author | SHA1 | Date |
---|---|---|
|
0e804db130 | |
|
57a44d6643 |
|
@ -86,9 +86,12 @@ To generate thumbnails for new logos and tag photos, install ImageMagick and run
|
||||||
#### Developers
|
#### Developers
|
||||||
* `--no-save`: Do not store retrieved information in local database, forcing re-fetch.
|
* `--no-save`: Do not store retrieved information in local database, forcing re-fetch.
|
||||||
* `--level`: Change log level to `silly`, `verbose`, `info`, `warn` or `error`.
|
* `--level`: Change log level to `silly`, `verbose`, `info`, `warn` or `error`.
|
||||||
* `--flush-network`: Delete all scenes and movies from all network channels
|
* `--delete-scenes`: Delete scenes and assets by ID.
|
||||||
* `--flush-channel`: Delete all scenes and movies from a channel
|
* `--delete-movies`: Delete movies and assets by ID.
|
||||||
* `--flush-batch`: Delete all scenes and movies from a batch ID
|
* `--flush-network`: Delete all scenes and movies with assets from all network channels
|
||||||
|
* `--flush-channel`: Delete all scenes and movies with assets from a channel
|
||||||
|
* `--flush-batch`: Delete all scenes and movies with assets from a batch ID
|
||||||
|
* `--flush-media`: Delete temporary media directory and all unassociated media entries and files
|
||||||
|
|
||||||
### API
|
### API
|
||||||
A GraphQL API is available at `/graphql`, and a REST API is available at the following `GET` endpoints:
|
A GraphQL API is available at `/graphql`, and a REST API is available at the following `GET` endpoints:
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "traxxx",
|
"name": "traxxx",
|
||||||
"version": "1.138.0",
|
"version": "1.138.1",
|
||||||
"lockfileVersion": 1,
|
"lockfileVersion": 1,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "traxxx",
|
"name": "traxxx",
|
||||||
"version": "1.138.0",
|
"version": "1.138.1",
|
||||||
"description": "All the latest porn releases in one place",
|
"description": "All the latest porn releases in one place",
|
||||||
"main": "src/app.js",
|
"main": "src/app.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
@ -41,10 +41,6 @@ async function init() {
|
||||||
await deleteMovies(argv.deleteMovies);
|
await deleteMovies(argv.deleteMovies);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (argv.delete) {
|
|
||||||
await deleteScenes(argv.delete);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (argv.flushOrphanedMedia) {
|
if (argv.flushOrphanedMedia) {
|
||||||
await flushOrphanedMedia();
|
await flushOrphanedMedia();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue