Merge branch 'fe-config' into 'develop'
frontendConfigController: add a #d filter See merge request soapbox-pub/ditto!35
This commit is contained in:
commit
81ca3e79be
|
@ -6,9 +6,12 @@ import { createAdminEvent } from '@/utils/web.ts';
|
|||
import { Conf } from '@/config.ts';
|
||||
|
||||
const frontendConfigController: AppController = async (c) => {
|
||||
const [event] = await eventsDB.getFilters(
|
||||
[{ kinds: [30078], authors: [Conf.pubkey], limit: 1 }],
|
||||
);
|
||||
const [event] = await eventsDB.getFilters([{
|
||||
kinds: [30078],
|
||||
authors: [Conf.pubkey],
|
||||
'#d': ['pub.ditto.frontendConfig'],
|
||||
limit: 1,
|
||||
}]);
|
||||
|
||||
if (event) {
|
||||
const data = JSON.parse(event.content);
|
||||
|
|
Loading…
Reference in New Issue