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: 4e63a85df891f247ad9353718fb40c4682bf3737 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import Activate from './activate.vue';
import Approve from './approve.vue';
import Ban from './ban.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 Unban from './unban.vue';
import Unblock from './unblock.vue';
import Unlock from './unlock.vue';

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