mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2026-01-20 20:01:22 +00:00
14 lines
496 B
JavaScript
14 lines
496 B
JavaScript
export const reportReasonCategoriesDatabaseList = () => {
|
|
// list see "ReasonCategory" in backend GraphQL schema file "REPORTED.gql"
|
|
return [
|
|
'other', // element # zero, because it is the nutral one
|
|
'discrimination-etc',
|
|
'pornographic-content-links',
|
|
'glorific-trivia-of-cruel-inhuman-acts',
|
|
'doxing',
|
|
'intentional-intimidation-stalking-persecution',
|
|
'advert-products-services-commercial',
|
|
'criminal-behavior-violation-german-law',
|
|
]
|
|
}
|