storeMiddleware: pass through admin UserStore
This commit is contained in:
parent
1ed700d7f9
commit
d22c606960
|
@ -1,16 +1,18 @@
|
||||||
import { AppMiddleware } from '@/app.ts';
|
import { AppMiddleware } from '@/app.ts';
|
||||||
|
import { Conf } from '@/config.ts';
|
||||||
import { UserStore } from '@/storages/UserStore.ts';
|
import { UserStore } from '@/storages/UserStore.ts';
|
||||||
import { eventsDB } from '@/storages.ts';
|
import { eventsDB } from '@/storages.ts';
|
||||||
|
|
||||||
/** Store middleware. */
|
/** Store middleware. */
|
||||||
const storeMiddleware: AppMiddleware = async (c, next) => {
|
const storeMiddleware: AppMiddleware = async (c, next) => {
|
||||||
const pubkey = c.get('pubkey');
|
const pubkey = c.get('pubkey');
|
||||||
|
const adminStore = new UserStore(Conf.pubkey, eventsDB);
|
||||||
|
|
||||||
if (pubkey) {
|
if (pubkey) {
|
||||||
const store = new UserStore(pubkey, eventsDB);
|
const store = new UserStore(pubkey, adminStore);
|
||||||
c.set('store', store);
|
c.set('store', store);
|
||||||
} else {
|
} else {
|
||||||
c.set('store', eventsDB);
|
c.set('store', adminStore);
|
||||||
}
|
}
|
||||||
await next();
|
await next();
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue