2a5cb7ec52
1. Allow entering any branch name for a protected branch. - Either pick from a list of options, or enter it manually - You can enter wildcards. 2. Display branches matching a protected branch. - Add a `ProtectedBranches#show` page that displays the branches matching the given protected branch, or a message if there are no matches. - On the `index` page, display the last commit for an exact match, or the number of matching branches for a wildcard match. - Add an `iid` column to `protected_branches` - this is what we use for the `show` page URL. - On the off chance that this feature is unnecessary, this commit encapsulates it neatly, so it can be removed without affecting anything else. 3. Remove the "Last Commit" column from the list of protected branches. - There's no way to pull these for wildcard protected branches, so it's best left for the `show` page. - Rename the `@branches` instance variable to `@protected_branches` - Minor styling changes with the "Unprotect" button - floated right like the "Revoke" button for personal access tokens 4. Paginate the list of protected branches. 5. Move the instructions to the left side of the page.
25 lines
735 B
Text
25 lines
735 B
Text
- page_title @protected_branch.name, "Protected Branches"
|
|
|
|
.row.prepend-top-default.append-bottom-default
|
|
.col-lg-3
|
|
%h4.prepend-top-0
|
|
= @protected_branch.name
|
|
|
|
.col-lg-9
|
|
%h5 Matching Branches
|
|
- if @matching_branches.present?
|
|
.table-responsive
|
|
%table.table.protected-branches-list
|
|
%colgroup
|
|
%col{ width: "30%" }
|
|
%col{ width: "30%" }
|
|
%thead
|
|
%tr
|
|
%th Branch
|
|
%th Last commit
|
|
%tbody
|
|
- @matching_branches.each do |matching_branch|
|
|
= render partial: "matching_branch", object: matching_branch
|
|
- else
|
|
%p.settings-message.text-center
|
|
Couldn't find any matching branches.
|