File size: 373 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
// @flow
import deleteCommunity from './deleteCommunity';
import editCommunity from './editCommunity';
import toggleCommunityRedirect from './toggleCommunityRedirect';
import toggleCommunityNoindex from './toggleCommunityNoindex.js';
module.exports = {
Mutation: {
deleteCommunity,
editCommunity,
toggleCommunityRedirect,
toggleCommunityNoindex,
},
};
|