[Glitch] Change report modal to include category selection in web UI

Port a9a43de6d1 to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
This commit is contained in:
Eugen Rochko
2022-02-23 20:03:46 +01:00
committed by Claire
parent 9dd62c95c5
commit 470c0a8002
17 changed files with 948 additions and 230 deletions

View File

@@ -17,7 +17,8 @@ import push_notifications from './push_notifications';
import status_lists from './status_lists';
import mutes from './mutes';
import blocks from './blocks';
import reports from './reports';
// import reports from './reports';
import rules from './rules';
import boosts from './boosts';
import contexts from './contexts';
import compose from './compose';
@@ -64,7 +65,8 @@ const reducers = {
push_notifications,
mutes,
blocks,
reports,
// reports,
rules,
boosts,
contexts,
compose,

View File

@@ -0,0 +1,13 @@
import { RULES_FETCH_SUCCESS } from 'flavours/glitch/actions/rules';
import { List as ImmutableList, fromJS } from 'immutable';
const initialState = ImmutableList();
export default function rules(state = initialState, action) {
switch (action.type) {
case RULES_FETCH_SUCCESS:
return fromJS(action.rules);
default:
return state;
}
}