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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-08-15Enable Layout/TrailingWhitespace cop and auto-correct offensesRobert Speicher
2017-07-07Native group milestonesFelipe Artur
2017-07-07Name as variable_params like project variable controllerShinya Maeda
2017-07-07gb nice catchesShinya Maeda
2017-07-07ayufan nice catchesShinya Maeda
2017-07-07Fix variables_controller.rb and formatShinya Maeda
2017-07-07Basic BE changeShinya Maeda
Fix static-snalysis Move the precedence of group secure variable before project secure variable. Allow project_id to be null. Separate Ci::VariableProject and Ci::VariableGroup Add the forgotton files Add migration file to update type of ci_variables Fix form_for fpr VariableProject Fix test Change the table structure according to the yorik advice Add necessary migration files. Remove unnecessary migration spec. Revert safe_model_attributes.yml Fix models Fix spec Avoid self.variable. Use becomes for correct routing. Use unique index on group_id and key Add null: false for t.timestamps Fix schema version Rename VariableProject and VariableGroup to ProjectVariable and GroupVariable Rename the rest of them Add the rest of files Basic BE change Fix static-snalysis Move the precedence of group secure variable before project secure variable. Allow project_id to be null. Separate Ci::VariableProject and Ci::VariableGroup Add the forgotton files Add migration file to update type of ci_variables Fix form_for fpr VariableProject Fix test Change the table structure according to the yorik advice Add necessary migration files. Remove unnecessary migration spec. Revert safe_model_attributes.yml Fix models Fix spec Avoid self.variable. Use becomes for correct routing. Use unique index on group_id and key Add null: false for t.timestamps Fix schema version Rename VariableProject and VariableGroup to ProjectVariable and GroupVariable Rename the rest of them Add the rest of files Implement CURD Rename codes related to VariableGroup and VariableProject FE part Remove unneccesary changes Make Fe code up-to-date Add protected flag to migration file Protected group variables essential package Update schema Improve doc Fix logic and spec for models Fix logic and spec for controllers Fix logic and spec for views(pre feature) Add feature spec Fixed bugs. placeholder. reveal button. doc. Add changelog Remove unnecessary comment godfat nice catches Improve secret_variables_for arctecture Fix spec Fix StaticAnlysys & path_regex spec Revert "Improve secret_variables_for arctecture" This reverts commit c3216ca212322ecf6ca534cb12ce75811a4e77f1. Use ayufan suggestion for secret_variables_for Use find instead of find_by Fix spec message for variable is invalid Fix spec remove variable.group_id = group.id godffat spec nitpicks Use include Gitlab::Routing.url_helpers for presenter spec
2017-06-26Add JSON support to group milestonesTakuya Noguchi
2017-06-07Add a rubocop rule to check if a method 'redirect_to' is used without ↵blackst0ne
explicitly set 'status' in 'destroy' actions of controllers
2017-05-19Refactor to more robust implementationMichael Kozono
In order to avoid string manipulation or modify route params (to make them unambiguous for `url_for`), we are accepting a behavior change: When being redirected to the canonical path for a group, if you requested a group show path starting with `/groups/…` then you’ll now be redirected to the group at root `/…`.
2017-05-06Merge branch '17361-redirect-renamed-paths' into 'master' Sean McGivern
Resolve "Redirect to new project link after a rename" Closes #17361 and #30317 See merge request !11136
2017-05-06Colorize labels in issue search fieldWinnie Hellmann
2017-05-05Resolve discussionsMichael Kozono
2017-05-05Dry up routable lookups. Fixes #30317Michael Kozono
Note: This changes the behavior of user lookups (see the spec change) so it acts the same way as groups and projects. Unauthenticated clients attempting to access a user page will be redirected to login whether the user exists and is publicly restricted, or does not exist at all.
2017-05-05Redirect from redirect routes to canonical routesMichael Kozono
2017-04-26Load milestone tabs asynchronouslyPhil Hughes
2017-04-17Refactor members controller destroy actionDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2017-04-17Refactor controller code that creates project/group membersDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2017-04-06ProjectsFinder should handle more optionsJacopo
Extended ProjectFinder in order to handle the following options: - current_user - which user use - project_ids_relation: int[] - project ids to use - params: - trending: boolean - non_public: boolean - starred: boolean - sort: string - visibility_level: int - tags: string[] - personal: boolean - search: string - non_archived: boolean GroupProjectsFinder now inherits from ProjectsFinder. Changed the code in order to use the new available options.
2017-04-05MR empty stateLuke "Jared" Bennett
2017-04-02Fix a few N+1 queries identified by BulletStan Hu
See !10263
2017-03-29Labels support color names in backendDongqing Hu
2017-03-10Add count badges to both dashboard and group milestonesAlex Braha Stoll
2017-02-10Show parent group members for nested groupDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2017-01-06Speed up group milestone index by passing group_id to IssuesFinderAdam Niedzielski
2016-12-17Sort group/project members alphabetically by defaultDouglas Barbosa Alexandre
2016-12-17Fix sort functionality for group/project membersDouglas Barbosa Alexandre
2016-12-17Adds sort dropdown for group membersNur Rony
2016-12-08Add nested groups support on data levelDmitriy Zaporozhets
* add parent_id field to namespaces table to store relation with nested groups * create routes table to keep information about full path of every group and project * project/group lookup by full path from routes table Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2016-11-23Add a starting date to milestonesValery Sizov
2016-11-17Add toggle_subscription action to Groups::LabelsControllerDouglas Barbosa Alexandre
2016-11-10Require projects before creating milestonegfyoung
2016-10-24Add parentheses around return redirect_to methodDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2016-10-24Refactor groups/projects members controllerDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2016-10-24Gracefully handle adding of no users to projects and groupsLinus G Thiel
- Disable {project, group} members submit button if no users If no users are selected, the submit button should be disabled. - Alert user when no users were added to {project, group}. When no users were selected for adding, an alert message is flashed that no users were added. - Also, this commit adds a feedback when users were actually added to a project, in symmetry with how group members are handled. Closes #22967, #23270.
2016-10-19Disable subscribing to group-level labelsDouglas Barbosa Alexandre
2016-10-19Limit what label fields we expose on Groups::LabelsController#indexDouglas Barbosa Alexandre
2016-10-19Reduce duplication between the project and group label formsDouglas Barbosa Alexandre
2016-10-19List only labels that belongs to the group on the group issues pageDouglas Barbosa Alexandre
2016-10-19List group labels on project labels pageDouglas Barbosa Alexandre
2016-10-19Add CRUD for Group LabelsDouglas Barbosa Alexandre
2016-10-03Fix a few things after the initial improvment to Members::DestroyServiceRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2016-10-03Improve Members::DestroyServiceRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2016-09-28New AccessRequestsFinderRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2016-08-18Add expiration date to group membershipsSean McGivern
2016-07-01Exclude requesters from Project#members, Group#members and User#membersRémy Coutable
And create new Project#requesters, Group#requesters scopes. Signed-off-by: Rémy Coutable <remy@rymai.me>
2016-06-18Raise a new Gitlab::Access::AccessDeniedError when permission is not enough ↵Rémy Coutable
to destroy a member This is a try for a new approach to put the access checks at the service level. Signed-off-by: Rémy Coutable <remy@rymai.me>
2016-06-18Use the new Members::DestroyService in group/project member controllersRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2016-06-17Re-use notifications dropdown/modal for user profileFelipe Artur
2016-06-17Re-use notifications dropdown on user profileFelipe Artur