| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Add login and remember_me to devise permit list | Dmitriy Zaporozhets | 2014-01-14 | 1 | -1/+1 |
| | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | ||||
| * | Do not include subtomains in STS header. | Marin Jankovski | 2014-01-03 | 1 | -1/+1 |
| | | |||||
| * | HTTP headers protect against MIME-sniffing, force https if enabled. | Marin Jankovski | 2013-12-30 | 1 | -0/+2 |
| | | |||||
| * | Force IE use latest engine to render. | xyb | 2013-12-27 | 1 | -0/+1 |
| | | |||||
| * | Fix signup for rails4 | Dmitriy Zaporozhets | 2013-12-10 | 1 | -0/+6 |
| | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | ||||
| * | Added allow_blank to model validations | Dmitriy Zaporozhets | 2013-12-10 | 1 | -0/+2 |
| | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | ||||
| * | Fix 404 on project page for unauthenticated user | Jason Hollingsworth | 2013-12-04 | 1 | -0/+3 |
| | | | | | | | | | Eliminate a 404 error when user is not logged in and attempts to visit a project page. The 404 page will still show up when user is logged in and the project doesn’t exist or the user doesn’t have access. | ||||
| * | Drop rjs from Issues#index | Dmitriy Zaporozhets | 2013-11-29 | 1 | -0/+8 |
| | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | ||||
| * | Drop rjs from Infinite scrolling | Dmitriy Zaporozhets | 2013-11-28 | 1 | -0/+14 |
| | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | ||||
| * | Adding authenticated public mode (internal). | Jason Hollingsworth | 2013-11-26 | 1 | -1/+1 |
| | | | | | | | Added visibility_level icons to project view (rather than just text). Added public projects to search results. Added ability to restrict visibility levels standard users can set. | ||||
| * | Fixing unsafe use of Thread.current variable :current_user | Angus MacArthur | 2013-10-16 | 1 | -1/+6 |
| | | |||||
| * | Remove .git from project url end redirect | Dmitriy Zaporozhets | 2013-10-14 | 1 | -0/+9 |
| | | | | | | | | | | | Ex. redirect from localhost/group/project.git to localhost/group/project It used to prevent 404 error when follow submodule http link like http://localhost/group/project.git | ||||
| * | Don't show users password change page if ldap users | Izaak Alpert | 2013-09-17 | 1 | -1/+1 |
| | | |||||
| * | Add event filter for group and project show pages | Dmitriy Zaporozhets | 2013-08-26 | 1 | -0/+5 |
| | | |||||
| * | Fix accidentally removed class name | Dmitriy Zaporozhets | 2013-08-21 | 1 | -0/+1 |
| | | |||||
| * | Remove can_create_team code from user | Dmitriy Zaporozhets | 2013-08-21 | 1 | -5/+0 |
| | | |||||
| * | Improve permissions on tags/branches | Dmitriy Zaporozhets | 2013-07-17 | 1 | -0/+4 |
| | | |||||
| * | Migrate global project taks. Removed more teams related functionality | Dmitriy Zaporozhets | 2013-06-19 | 1 | -8/+0 |
| | | |||||
| * | Force admin to change password after first sign-in | Dmitriy Zaporozhets | 2013-06-13 | 1 | -1/+1 |
| | | |||||
| * | Add password_expires_at to users table | Dmitriy Zaporozhets | 2013-06-13 | 1 | -2/+2 |
| | | |||||
| * | Password expire: implement password resource inside profile. add ↵ | Dmitriy Zaporozhets | 2013-06-13 | 1 | -0/+7 |
| | | | | | before_fiter check | ||||
| * | cattr_accessor is not threadsafe! | Dmitriy Zaporozhets | 2013-06-11 | 1 | -4/+3 |
| | | |||||
| * | enforce secure gravatar urls when Gitlab.config.gitlab.https is set | Jean-Luc Geering | 2013-05-31 | 1 | -1/+1 |
| | | |||||
| * | Grammar fix in error message for blocked login (in "application_controller.rb") | Peter LeFanu Lumsdaine | 2013-05-28 | 1 | -2/+2 |
| | | |||||
| * | Rename repo feature | Dmitriy Zaporozhets | 2013-05-25 | 1 | -1/+1 |
| | | |||||
| * | Refactor API classes. So api classes like Gitlab::Issues become API::Issues | Dmitriy Zaporozhets | 2013-05-14 | 1 | -1/+1 |
| | | |||||
| * | Merge pull request #3801 from holdtotherod/feature/internally-public-projects | Dmitriy Zaporozhets | 2013-05-03 | 1 | -1/+1 |
| |\ | | | | | Internally public projects | ||||
| | * | Internally public projects | Stephen Lottermoser | 2013-05-02 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Public projects listed in the public section will be linked to the actual project's page. Public projects now give any user Guest permissions to the project, allowing them to download the code, read and create issues, and view anything else in the project's pages. Ample access tests have been added to the project_access_spec to verify correct permissions and behavior on public projects. - Visitors to the site who are not logged in still cannot view the project's pages. - Logged-in users visiting a public project where they are not a team member can create issues, but not snippets. They can view the projects code, issues, merge requests, etc, just as if they were a Guest member of the project. - Since this is a public project, the user is also granted :download_code permissions, a permission normally reserved for Reporters, since they can clone the repo anyways and browse commits and branches locally. | ||||
| * | | [BUGFIX] User suggest at team_members/new not working with relative_url_root | Christian Simon | 2013-04-24 | 1 | -0/+1 |
| |/ | | | | | * Closing #3540 * Closing #3704 | ||||
| * | Finish select2-ajax for users. Added Select2Helper for tests | Dmitriy Zaporozhets | 2013-03-14 | 1 | -4/+3 |
| | | |||||
| * | fix setting gon.api_token | Dmitriy Zaporozhets | 2013-03-13 | 1 | -2/+4 |
| | | |||||
| * | add api users filter and integrate users select2 | Dmitriy Zaporozhets | 2013-03-13 | 1 | -0/+2 |
| | | |||||
| * | User's blocked field refactored to use state machine | Andrew8xx8 | 2013-03-04 | 1 | -2/+2 |
| | | |||||
| * | Default issue tracker name added to gon variables | Andrew8xx8 | 2013-02-28 | 1 | -0/+5 |
| | | |||||
| * | Make gitlab works with gitlab-shell | Dmitriy Zaporozhets | 2013-02-04 | 1 | -5/+0 |
| | | |||||
| * | Dont allow gitlab be loaded in iframe | Dmitriy Zaporozhets | 2013-02-02 | 1 | -0/+5 |
| | | |||||
| * | Fix mass-assignment. Dont allow users w/o access to create team | Dmitriy Zaporozhets | 2013-01-25 | 1 | -0/+4 |
| | | |||||
| * | update all teams code. refactoring and some corrections | Andrey Kumanyaev | 2013-01-24 | 1 | -0/+9 |
| | | |||||
| * | REpostiry, Team models | Dmitriy Zaporozhets | 2013-01-03 | 1 | -0/+6 |
| | | |||||
| * | Only owner can remove project | Dmitriy Zaporozhets | 2012-12-05 | 1 | -0/+4 |
| | | |||||
| * | Merge pull request #2059 from dolanor/feature-rewording-blocked-users | Dmitriy Zaporozhets | 2012-11-30 | 1 | -2/+2 |
| |\ | | | | | Rewording for the account being blocked | ||||
| | * | Rewording for the account being blocked | Tanguy Herrmann | 2012-11-24 | 1 | -2/+2 |
| | | | | | | | | | | | | | When signing in with SSO, if the default behaviour of gitlab is to block SSO user, the only message the people will get is 'Your account was blocked' They should get the idea this might be only temporary and not because of a technical problem | ||||
| * | | Refactor abilities. Added ProjectUpdate context. Fixed few bugs with namespaces | Dmitriy Zaporozhets | 2012-11-29 | 1 | -3/+10 |
| | | | |||||
| * | | add ability to change namespace from project edit page | Dmitriy Zaporozhets | 2012-11-24 | 1 | -2/+1 |
| | | | |||||
| * | | Deprecate code for Project. Use title and path | Dmitriy Zaporozhets | 2012-11-23 | 1 | -1/+1 |
| | | | |||||
| * | | Improve routing. Project access via namespace | Dmitriy Zaporozhets | 2012-11-22 | 1 | -1/+4 |
| |/ | |||||
| * | Log caught exceptions | Riyad Preukschas | 2012-11-06 | 1 | -0/+9 |
| | | |||||
| * | Separate observing of Note and MergeRequests | Robb Kidd | 2012-10-10 | 1 | -5/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * Move is_assigned? and is_being_xx? methods to IssueCommonality This is behavior merge requests have in common with issues. Moved methods to IssueCommonality role. Put specs directly into merge_request_spec because setup differs for issues and MRs specifically in the "closed" factory to use. * Add MergeRequestObserver. Parallels IssueObserver in almost every way. Ripe for refactoring. * Rename MailerObserver to NoteObserver With merge request observing moved out of MailerObserver, all that was left was Note logic. Renamed to NoteObserver, added tests and updated application config for new observer names. Refactored NoteObserver to use the note's author and not rely on current_user. * Set current_user for MergeRequestObserver IssueObserver and MergeRequestObserver are the only observers that need a reference to the current_user that they cannot look up on the objects they are observing. | ||||
| * | Merge branch 'master' into simplify_controllers2 | Cyril | 2012-09-27 | 1 | -13/+1 |
| |\ | | | | | | | | | | | Conflicts: app/controllers/commits_controller.rb app/controllers/refs_controller.rb | ||||
| | * | Use Rails.root.join where appropriate | Robert Speicher | 2012-09-26 | 1 | -1/+1 |
| | | | |||||
