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-01-03Fixed more rspec tests as well as spinach featuresJose Ivan Vargas
2017-01-03Fixed rspec tests for the project members also fixed the indexJose Ivan Vargas
view (removed an extra tag )
2017-01-03Moved the members (project_members)option to a single controller called membersJose Ivan Vargas
This controller is going to contain both the project members and groups options for the settings gear. Generated the route and modified the routing to point to the new members setting path
2016-12-17Fix query in Projects::ProjectMembersController to fetch membersDouglas Barbosa Alexandre
2016-12-17Adds sort dropdown for group membersNur Rony
2016-12-08Use a single query in Projects::ProjectMembersController to fetch membersRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2016-12-07Handle an edge-case whith inviteesRémy Coutable
When the project has invitees, no group members were returned due to a `user_id NOT IN (42, NULL)` query which always returned [] since a `user_id` would be NULL, thus the condition could never match. Signed-off-by: Rémy Coutable <remy@rymai.me>
2016-12-02Fixed Ruby to be better for performancePhil Hughes
Fixed controls not showing in groups which fixes tests
2016-12-02Shows group members in the project members listPhil Hughes
Closes #24122
2016-11-01Implement CreateMembers service to make controller thinValery Sizov
2016-10-24Update project member controller to match recent master logicDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
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-20Removed code from project members controllerPhil Hughes
This code was meant to be added to another branch as an expirement, but instead was commited to wrong branch
2016-10-06Changed how collections are renderedPhil Hughes
Used variables in haml for replicated checks Fixed broken conflict
2016-10-06Merge branch 'master' into members-uiPhil Hughes
2016-10-05Updated Ruby variable namePhil Hughes
Fixed Ruby code based on review feedback
2016-10-04Updated RubyPhil Hughes
2016-10-04Merge branch 'master' into members-uiPhil Hughes
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-09-13Group links search test fixPhil Hughes
2016-09-13Added back orderingPhil Hughes
2016-09-13Ruby updatePhil Hughes
2016-09-13Removed group members from the list for nowPhil Hughes
2016-09-13Fixed bug when group_ids not present when creatingPhil Hughes
2016-09-13Search project groupsPhil Hughes
2016-09-13Updated some specsPhil Hughes
Fixed issue with group name not showing
2016-09-13Fixed searchPhil Hughes
2016-09-13Fixed issue with invited users not showing upPhil Hughes
2016-09-13Fixed members errorPhil Hughes
2016-09-13Removes row from dom when deletingPhil Hughes
Fixed spacing with buttons Disables group form when user doesnt have correct permissions
2016-09-13Fixed group members not deletingPhil Hughes
Combine both group members & project members in project members list
2016-09-13Fixed issue with groups not displayingPhil Hughes
2016-09-13Included groups on project_members pagePhil Hughes
2016-08-05Allow to edit access expiration date.Adam Niedzielski
2016-08-02Replace optional parameters with keyword arguments.Adam Niedzielski
2016-08-01WIPAdam Niedzielski
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-14UI and copywriting improvementsRémy Coutable
+ Move 'Edit Project/Group' out of membership-related partial + Show the access request buttons only to logged-in users + Put the request access buttons out of in a more visible button + Improve the copy in the #remove_member_message helper Signed-off-by: Rémy Coutable <remy@rymai.me>
2016-06-14Factorize #request_access and #approve_access_request into a new ↵Rémy Coutable
AccessRequestActions controller concern Signed-off-by: Rémy Coutable <remy@rymai.me>
2016-06-14Add request access for groupsRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2016-06-14Initial implementation of user access request to projectsDavid Alexander
2016-05-18Merge branch 'meinac/gitlab-ce-change_deprecated_render_usage'Dmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2016-04-20Remove unused authorization from controllerFelipe Artur
2016-04-18Show project members only for membersFelipe Artur