Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.js « actions « components « users « admin « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e34b01346b910fc049c045ab488d86d56113283f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import Activate from './activate.vue';
import Approve from './approve.vue';
import Block from './block.vue';
import Deactivate from './deactivate.vue';
import Delete from './delete.vue';
import DeleteWithContributions from './delete_with_contributions.vue';
import Reject from './reject.vue';
import Unblock from './unblock.vue';
import Unlock from './unlock.vue';

export default {
  Activate,
  Approve,
  Block,
  Deactivate,
  Delete,
  DeleteWithContributions,
  Unblock,
  Unlock,
  Reject,
};