Skip to content
代码片段 群组 项目
提交 012749f3 编辑于 作者: Jacques Erasmus's avatar Jacques Erasmus 提交者: Stan Hu
浏览文件

Add branch rules page

Added branch rules page skeleton
上级 073bbbfb
No related branches found
No related tags found
无相关合并请求
import mountBranchRules from '~/projects/settings/branch_rules/mount_branch_rules';
mountBranchRules(document.getElementById('js-branch-rules'));
<script>
export default {
name: 'RuleEdit',
};
</script>
<template>
<div>
<!-- TODO - Add branch protections (https://gitlab.com/gitlab-org/gitlab/-/issues/362212) -->
</div>
</template>
import Vue from 'vue';
import RuleEdit from './components/rule_edit.vue';
export default function mountBranchRules(el) {
if (!el) {
return null;
}
return new Vue({
el,
render(h) {
return h(RuleEdit);
},
});
}
# frozen_string_literal: true
module Projects
module Settings
class BranchRulesController < Projects::ApplicationController
before_action :authorize_admin_project!
feature_category :source_code_management
def index
render_404 unless Feature.enabled?(:branch_rules, project)
end
end
end
end
- add_to_breadcrumbs _('Repository Settings'), project_settings_repository_path(@project)
- page_title _('Branch rules')
%h3= _('Branch rules')
#js-branch-rules
......@@ -147,6 +147,8 @@
# See MR comment for more detail: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/27059#note_311585356
post :create_deploy_token, path: 'deploy_token/create'
post :cleanup
resources :branch_rules, only: [:index]
end
resources :access_tokens, only: [:index, :create] do
......
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe 'Projects > Settings > Repository > Branch rules settings' do
let(:project) { create(:project_empty_repo) }
let(:user) { create(:user) }
let(:role) { :developer }
subject(:request) { visit project_settings_repository_branch_rules_path(project) }
before do
project.add_role(user, role)
sign_in(user)
end
context 'for developer' do
let(:role) { :developer }
it 'is not allowed to view' do
request
expect(page).to have_gitlab_http_status(:not_found)
end
end
context 'for maintainer' do
let(:role) { :maintainer }
context 'Branch rules', :js do
it 'renders branch rules page' do
request
expect(page).to have_content('Branch rules')
end
end
context 'branch_rules feature flag disabled' do
it 'does not render branch rules content' do
stub_feature_flags(branch_rules: false)
request
expect(page).to have_gitlab_http_status(:not_found)
end
end
end
end
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册