Skip to content
Snippets Groups Projects
Commit 39302bf0 authored by syuilo's avatar syuilo
Browse files

fix(server): admin/meta is not working

Fix #8455
parent 11ccb98c
No related branches found
No related tags found
No related merge requests found
......@@ -19,6 +19,7 @@ You should also include the user name that made the change.
### Bugfixes
- API: fix endpoint endpoint @Johann150
- API: fix admin/meta endpoint @syuilo
## 12.108.1 (2022/03/12)
......
import { Schema } from '@/misc/schema.js';
import * as ep___admin_meta from './endpoints/admin/meta.js';
import * as ep___admin_abuseUserReports from './endpoints/admin/abuse-user-reports.js';
import * as ep___admin_accounts_create from './endpoints/admin/accounts/create.js';
import * as ep___admin_accounts_delete from './endpoints/admin/accounts/delete.js';
......@@ -304,6 +305,7 @@ import * as ep___users_show from './endpoints/users/show.js';
import * as ep___users_stats from './endpoints/users/stats.js';
const eps = [
['admin/meta', ep___admin_meta],
['admin/abuse-user-reports', ep___admin_abuseUserReports],
['admin/accounts/create', ep___admin_accounts_create],
['admin/accounts/delete', ep___admin_accounts_delete],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment