diff options
| author | Sean King <seanking2919@protonmail.com> | 2022-09-15 22:02:58 -0600 |
|---|---|---|
| committer | Sean King <seanking2919@protonmail.com> | 2022-09-15 22:02:58 -0600 |
| commit | 12d8d1711bb41b14c35914cb82a6d5f41943e198 (patch) | |
| tree | 166658b8222b865b4e89f010c977838c54de95ec /src/components/account_actions/account_actions.js | |
| parent | d8730cad602fe5ba7faf7cefc4a1a67cd0896d9d (diff) | |
Added support for removing users from followers
Diffstat (limited to 'src/components/account_actions/account_actions.js')
| -rw-r--r-- | src/components/account_actions/account_actions.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/components/account_actions/account_actions.js b/src/components/account_actions/account_actions.js index 735dd81c..c23407f9 100644 --- a/src/components/account_actions/account_actions.js +++ b/src/components/account_actions/account_actions.js @@ -36,6 +36,9 @@ const AccountActions = { unblockUser () { this.$store.dispatch('unblockUser', this.user.id) }, + removeUserFromFollowers () { + this.$store.dispatch('removeUserFromFollowers', this.user.id) + }, reportUser () { this.$store.dispatch('openUserReportingModal', { userId: this.user.id }) }, |
