diff --git a/CHANGELOG.md b/CHANGELOG.md index f7ab238c..24db7aec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -29,6 +29,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - Report notes - Ability to moderate users on the statuses page - Ability to moderate user on the user's page +- Ability to restart an application when settings that require instance reboot were changed - Mobile UI for Settings tab ### Fixed diff --git a/src/lang/en.js b/src/lang/en.js index df122612..3f9643ca 100644 --- a/src/lang/en.js +++ b/src/lang/en.js @@ -364,7 +364,9 @@ export default { emoji: 'Emoji', markup: 'Markup settings', corsPlug: 'CORS plug config', - instanceReboot: 'Instance Reboot' + instanceReboot: 'Instance Reboot', + restartApp: 'You must restart the instance to apply settings', + restartSuccess: 'Instance rebooted successfully!' }, invites: { inviteTokens: 'Invite tokens', diff --git a/src/views/settings/index.vue b/src/views/settings/index.vue index 2fe9645b..3d0bbcdb 100644 --- a/src/views/settings/index.vue +++ b/src/views/settings/index.vue @@ -4,12 +4,14 @@