about summary refs log tree commit diff
path: root/app/assets/javascripts/components/actions/accounts.jsx
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2016-09-18 13:45:39 +0200
committerEugen Rochko <eugen@zeonfederated.com>2016-09-18 13:45:39 +0200
commitdafcb021534d2a19ff5d4c1f9bedafb52a2ce77f (patch)
tree4e525cb2cafc6a531cf8a42fc00acc7e58af0aa2 /app/assets/javascripts/components/actions/accounts.jsx
parent9863196f7bf007aedf5f832a20dcd6f519dbf383 (diff)
Remove unused action constants
Diffstat (limited to 'app/assets/javascripts/components/actions/accounts.jsx')
-rw-r--r--app/assets/javascripts/components/actions/accounts.jsx3
1 files changed, 0 insertions, 3 deletions
diff --git a/app/assets/javascripts/components/actions/accounts.jsx b/app/assets/javascripts/components/actions/accounts.jsx
index 327fb23f7..da6c261f2 100644
--- a/app/assets/javascripts/components/actions/accounts.jsx
+++ b/app/assets/javascripts/components/actions/accounts.jsx
@@ -2,17 +2,14 @@ import api from '../api'
 
 export const ACCOUNT_SET_SELF = 'ACCOUNT_SET_SELF';
 
-export const ACCOUNT_FETCH         = 'ACCOUNT_FETCH';
 export const ACCOUNT_FETCH_REQUEST = 'ACCOUNT_FETCH_REQUEST';
 export const ACCOUNT_FETCH_SUCCESS = 'ACCOUNT_FETCH_SUCCESS';
 export const ACCOUNT_FETCH_FAIL    = 'ACCOUNT_FETCH_FAIL';
 
-export const ACCOUNT_FOLLOW         = 'ACCOUNT_FOLLOW';
 export const ACCOUNT_FOLLOW_REQUEST = 'ACCOUNT_FOLLOW_REQUEST';
 export const ACCOUNT_FOLLOW_SUCCESS = 'ACCOUNT_FOLLOW_SUCCESS';
 export const ACCOUNT_FOLLOW_FAIL    = 'ACCOUNT_FOLLOW_FAIL';
 
-export const ACCOUNT_UNFOLLOW         = 'ACCOUNT_UNFOLLOW';
 export const ACCOUNT_UNFOLLOW_REQUEST = 'ACCOUNT_UNFOLLOW_REQUEST';
 export const ACCOUNT_UNFOLLOW_SUCCESS = 'ACCOUNT_UNFOLLOW_SUCCESS';
 export const ACCOUNT_UNFOLLOW_FAIL    = 'ACCOUNT_UNFOLLOW_FAIL';