mirror of
https://github.com/yoimiya-kokomi/miao-plugin.git
synced 2024-11-16 04:35:42 +00:00
admin bugfix
This commit is contained in:
parent
5c595755dd
commit
651afc4b4f
@ -1,5 +1,5 @@
|
|||||||
export async function userStat(e) {
|
export async function userStat(e) {
|
||||||
if (await e.checkAuth({
|
if (!await e.checkAuth({
|
||||||
auth: "master"
|
auth: "master"
|
||||||
})) return true;
|
})) return true;
|
||||||
|
|
||||||
@ -29,7 +29,7 @@ export async function userStat(e) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export async function rebuildCookie(e) {
|
export async function rebuildCookie(e) {
|
||||||
if (await e.checkAuth({
|
if (!await e.checkAuth({
|
||||||
auth: "master"
|
auth: "master"
|
||||||
})) return true;
|
})) return true;
|
||||||
|
|
||||||
@ -48,7 +48,7 @@ export async function rebuildCookie(e) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export async function userStatus(e, { Models }) {
|
export async function userStatus(e, { Models }) {
|
||||||
if (await e.checkAuth({
|
if (!await e.checkAuth({
|
||||||
auth: "master"
|
auth: "master"
|
||||||
})) return true;
|
})) return true;
|
||||||
|
|
||||||
@ -66,7 +66,7 @@ export async function userStatus(e, { Models }) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export async function userCacheRebuild(e, { Models }) {
|
export async function userCacheRebuild(e, { Models }) {
|
||||||
if (await e.checkAuth({
|
if (!await e.checkAuth({
|
||||||
auth: "master"
|
auth: "master"
|
||||||
})) return true;
|
})) return true;
|
||||||
|
|
||||||
@ -78,7 +78,7 @@ export async function userCacheRebuild(e, { Models }) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export async function mysUserCk(e, { Models }) {
|
export async function mysUserCk(e, { Models }) {
|
||||||
if (await e.checkAuth({
|
if (!await e.checkAuth({
|
||||||
auth: "master"
|
auth: "master"
|
||||||
})) return true;
|
})) return true;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user