this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add DE labeler (#5675)

authored by

Eric Bailey and committed by
GitHub
1c6cee7a c5e40d66

+3 -1
+3 -1
src/state/session/additional-moderation-authorities.ts
··· 4 4 import {device} from '#/storage' 5 5 6 6 export const BR_LABELER = 'did:plc:ekitcvx7uwnauoqy5oest3hm' 7 + export const DE_LABELER = 'did:plc:r55ow3tocux5kafs5dq445fy' 7 8 export const ADDITIONAL_LABELERS_MAP: { 8 9 [countryCode: string]: string[] 9 10 } = { 10 11 BR: [BR_LABELER], 12 + DE: [DE_LABELER], 11 13 } 12 14 export const ALL_ADDITIONAL_LABELERS = Object.values( 13 15 ADDITIONAL_LABELERS_MAP, 14 16 ).flat() 15 - export const NON_CONFIGURABLE_LABELERS = [BR_LABELER] 17 + export const NON_CONFIGURABLE_LABELERS = [BR_LABELER, DE_LABELER] 16 18 17 19 export function isNonConfigurableModerationAuthority(did: string) { 18 20 return NON_CONFIGURABLE_LABELERS.includes(did)