This commit is contained in:
Aevann1 2022-03-19 21:15:13 +02:00
parent 207b3c1980
commit 6c97156856
15 changed files with 48 additions and 23 deletions

View file

@ -205,6 +205,11 @@ ACTIONTYPES = {
"icon": 'fa-trash-alt',
"color": 'bg-muted'
},
'edit_post': {
"str": 'edited {self.target_link}',
"icon": 'fa-edit',
"color": 'bg-primary'
},
'enable_signups': {
"str": 'enabled signups',
"icon": 'fa-users',
@ -215,6 +220,11 @@ ACTIONTYPES = {
"icon": 'fa-shield',
"color": 'bg-success'
},
'flair_post': {
"str": 'set a flair on {self.target_link}',
"icon": 'fa-tag',
"color": 'bg-primary'
},
'grant_awards': {
"str": 'granted awards to {self.target_link}',
"icon": 'fa-gift',
@ -374,4 +384,6 @@ ACTIONTYPES = {
ACTIONTYPES2 = deepcopy(ACTIONTYPES)
ACTIONTYPES2.pop("shadowban")
ACTIONTYPES2.pop("unshadowban")
ACTIONTYPES2.pop("unshadowban")
ACTIONTYPES2.pop("flair_post")
ACTIONTYPES2.pop("edit_post")