Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Exclude requesters from Project#members, Group#members and User#membersexplicit-requesters-scope | Rémy Coutable | 2016-07-01 | 1 | -3/+3 |
| | | | | | | And create new Project#requesters, Group#requesters scopes. Signed-off-by: Rémy Coutable <remy@rymai.me> | ||||
* | Use HTTP matchers if possible | Z.J. van de Weg | 2016-06-27 | 1 | -7/+7 |
| | |||||
* | Fix and remove duplicate specs18755-fix-destroy-project-causes-post_decline_request-to-be-executed | Rémy Coutable | 2016-06-20 | 1 | -3/+1 |
| | | | | Signed-off-by: Rémy Coutable <remy@rymai.me> | ||||
* | Redirect to the member's source on request withdrawal | Rémy Coutable | 2016-06-18 | 1 | -1/+1 |
| | | | | Signed-off-by: Rémy Coutable <remy@rymai.me> | ||||
* | Re-use notifications dropdown/modal for user profile | Felipe Artur | 2016-06-17 | 1 | -32/+0 |
|\ | |||||
| * | Re-use notifications dropdown on user profile | Felipe Artur | 2016-06-16 | 1 | -32/+0 |
| | | |||||
* | | UI and copywriting improvements13948-access-request-to-projects-and-groups | Rémy Coutable | 2016-06-14 | 1 | -12/+12 |
| | | | | | | | | | | | | | | | | | | + 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> | ||||
* | | Factorize #request_access and #approve_access_request into a new ↵ | Rémy Coutable | 2016-06-14 | 1 | -3/+3 |
| | | | | | | | | | | | | AccessRequestActions controller concern Signed-off-by: Rémy Coutable <remy@rymai.me> | ||||
* | | Add request access for groups | Rémy Coutable | 2016-06-14 | 1 | -2/+196 |
|/ | | | | Signed-off-by: Rémy Coutable <remy@rymai.me> | ||||
* | Remove group members check | Felipe Artur | 2016-04-18 | 1 | -3/+5 |
| | |||||
* | Fix code | Felipe Artur | 2016-04-18 | 1 | -2/+1 |
| | |||||
* | Add specs and fix code | Felipe Artur | 2016-04-18 | 1 | -0/+19 |
| | |||||
* | Improve specs for group/project notification controllerdecouple-member-notification | Douglas Barbosa Alexandre | 2016-04-12 | 1 | -1/+16 |
| | |||||
* | Requires user to be signed in when changing notification settings | Douglas Barbosa Alexandre | 2016-04-11 | 1 | -0/+17 |
| | |||||
* | Implement review suggestions | Felipe Artur | 2016-04-07 | 1 | -1/+1 |
| | |||||
* | Improve code | Felipe Artur | 2016-04-05 | 1 | -1/+1 |
| | |||||
* | Fix problem when creating milestones in groups without projects | Felipe Artur | 2016-04-05 | 1 | -0/+6 |
| | |||||
* | Fix more specs | Douwe Maan | 2016-03-20 | 1 | -1/+2 |
| | |||||
* | Fix Error 500 when creating global milestones with Unicode characters | Stan Hu | 2015-12-05 | 1 | -0/+27 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Two issues: 1. The constraints in the resources were incorrect. Here's what it was before: ``` group_milestone GET /groups/:group_id/milestones/:id(.:format) groups/milestones#show {:id=>/[a-zA-Z.0-9_\-]+(?<!\.atom)/, :group_id=>/[a-zA-Z.0-9_\-]+(?<!\.atom)/} ``` In this case, id is actually the title of the milestone, which can be anything at the moment. After: ``` group_milestone GET /groups/:group_id/milestones/:id(.:format) groups/milestones#show {:id=>/[^\/]+/, :group_id=>/[a-zA-Z.0-9_\-]+(?<!\.atom)/} ``` 2. `parameterize` would strip all Unicode characters, leaving a blank string. Rails would report something like: ActionView::Template::Error (No route matches {:action=>"show", :controller=>"groups/milestones", :group_id=>#<Group id: 48, name: "ops-dev", path: "ops-dev", owner_id: nil, created_at: "2015-11-15 08:55:30", updated_at: "2015-12-02 06:23:26", type: "Group", description: "", avatar: "sha1.c71e73d51af1865c1bbbf6208e10044d46c9bb93.png", public: false>, :id=>"", :title=>"肯定不是中文的问题"} missing required keys: [:id]): This change uses the babosa library to create a better slug, which surprisingly isn't actually used by the global milestone controllers. Instead, they use the title passed as a query string for some reason. Closes https://github.com/gitlabhq/gitlabhq/issues/9881 Fix constraints | ||||
* | Fix bug where avatar filenames were not actually deleted from the database ↵ | Stan Hu | 2015-05-07 | 1 | -0/+17 |
during removal. This would result in a 404 error in certain views. The `save` call was being rolled back due to an error in the validation step. Relax the validation step so that this works. Closes #1570 |