diff --git a/files/assets/css/main.css b/files/assets/css/main.css index b34ceca66..382b97816 100644 --- a/files/assets/css/main.css +++ b/files/assets/css/main.css @@ -200,6 +200,7 @@ .fa-image-slash:before{content:"\e1b7"} .fa-play:before{content:"\f04b"} .fa-temperature-snow:before{content:"\f768"} +.fa-images:before{content:"\f302"} button { background: none; diff --git a/files/helpers/config/modaction_types.py b/files/helpers/config/modaction_types.py index a89eaec9d..2f54c963b 100644 --- a/files/helpers/config/modaction_types.py +++ b/files/helpers/config/modaction_types.py @@ -81,6 +81,11 @@ MODACTION_TYPES = { "icon": 'fa-shield', "color": 'bg-muted' }, + 'disable_dm_images': { + "str": 'disabled DM images', + "icon": 'fa-images', + "color": 'bg-muted' + }, 'distinguish_comment': { "str": 'distinguished {self.target_link}', "icon": 'fa-crown', @@ -141,6 +146,11 @@ MODACTION_TYPES = { "icon": 'fa-shield', "color": 'bg-success', }, + 'enable_dm_images': { + "str": 'enabled DM images', + "icon": 'fa-images', + "color": 'bg-success', + }, 'flair_post': { "str": 'set a flair on {self.target_link}', "icon": 'fa-tag',