debian-mirror-gitlab/spec/frontend/projects/settings/branch_rules/mock_data.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
334 B
JavaScript
Raw Normal View History

2022-08-27 11:52:29 +05:30
export const membersAllowedToPush = ['Maintainers', 'Developers'];
export const allowForcePush = false;
export const membersAllowedToMerge = ['Maintainers'];
export const requireCodeOwnersApproval = false;
export const protections = {
membersAllowedToPush,
allowForcePush,
membersAllowedToMerge,
requireCodeOwnersApproval,
};