summaryrefslogtreecommitdiff
path: root/app/controllers/projects_controller.rb
Commit message (Collapse)AuthorAgeFilesLines
* Add committed_at to commits to properly order last commit (the force push issue)Kamil Trzcinski2015-08-211-2/+2
|
* Refactor GitLab API usage to use either access_token or private_tokenKamil Trzcinski2015-08-041-1/+1
|
* Get rid of private message usageoauth_everywhereValery Sizov2015-07-021-1/+1
|
* implementation of variablesValery Sizov2015-06-051-1/+2
|
* Merge branch 'jobs_in_yml' into 'master'Dmitriy Zaporozhets2015-06-031-5/+8
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | CI configuration with .gitlab-ci.yml https://dev.gitlab.org/gitlab/gitlab-ci/issues/245 Example: ``` # Refs to skip skip_refs: “deploy*” # Run before each script before_script: - export PATH=$HOME/bin:/usr/local/bin:/usr/bin:/bin - gem install bundler - cp config/database.yml.mysql config/database.yml - cp config/gitlab.yml.example config/gitlab.yml - touch log/application.log - touch log/test.log - bundle install --without postgres production --jobs $(nproc) - bundle exec rake db:create RAILS_ENV=test # Parallel jobs, each line is parallel build jobs: - script: “rake spec” runner: “ruby,postgres” name: “Rspec” - script: “rake spinach” runner: “ruby,mysql” name: “Spinach” tags: true branches: false # Parallel deploy jobs deploy_jobs: “cap deploy production” “cap deploy staging” ``` See merge request !110
| * download link to generated yamlValery Sizov2015-06-031-2/+6
| |
| * Implementation of configuration CI with gitlab-ci.ymlValery Sizov2015-06-031-1/+1
| |
| * cleaning upValery Sizov2015-06-031-2/+1
| |
* | replace YAML with JOSN on dashboardValery Sizov2015-06-031-2/+4
|/
* Use retina-ready standard badgesDmitriy Zaporozhets2015-05-201-1/+1
|
* search fixValery Sizov2015-05-191-1/+1
|
* basic implementation of endless scroll on dashboardValery Sizov2015-05-191-4/+11
|
* public accessible build and commitValery Sizov2015-05-151-10/+1
|
* More explicit permission error for developersValery Sizov2015-05-061-0/+4
|
* Refactoring. Clean up advanced settings. Migrate from gotlab_url to pathValery Sizov2015-05-041-5/+4
|
* Merge branch 'refactoring_user_url' into 'master'Dmitriy Zaporozhets2015-04-231-1/+1
|\ | | | | | | | | | | | | | | Refactoring network related code https://dev.gitlab.org/gitlab/gitlab-ci/issues/139 See merge request !74
| * refactoring network related coderefactoring_user_urlValery Sizov2015-04-221-1/+1
| |
* | Merge branch 'project-runners-page' into 'master'Dmitriy Zaporozhets2015-04-231-3/+7
|\ \ | |/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Improved runner page for project Tasks: - [x] Ability to add runner to several projects - [x] Render runner status (online, offline, disabled) - [x] Two column style of page: specific and shared runners - [x] Toggle shared runners for project - [x] Fix tests - [x] Write tests for new functionality - [x] Remove runner instead disabling if it is last project for this runner - [x] Cleanup and refactor code - [x] Improve query for authorised runners (reject duplicates) - [x] Improve UI based on https://dev.gitlab.org/gitlab/gitlab-ci/issues/185#note_41582 See merge request !61
| * toggle shared runnersValery Sizov2015-04-211-2/+7
| |
| * Improved runner page for projectDmitriy Zaporozhets2015-04-211-1/+0
| | | | | | | | | | | | | | | | * ability to add runner to several projects * render runner status (online, offline, disabled) * two column style of page: specific and shared runners Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* | Merge branch 'improve_test_coverage' into 'master'Valery Sizov2015-04-221-1/+1
|\ \ | | | | | | | | | | | | | | | | | | | | | Improved test coverage https://dev.gitlab.org/gitlab/gitlab-ci/issues/203 See merge request !68
| * | Improved test coverageimprove_test_coverageValery Sizov2015-04-171-1/+1
| |/
* | projects search on dashboardValery Sizov2015-04-211-2/+4
|/
* deploy job creation fixValery Sizov2015-04-151-3/+2
|
* fix rubocopValery Sizov2015-04-151-1/+1
|
* job deletion fixValery Sizov2015-04-151-1/+1
|
* fix jobs creationfix_job_creationValery Sizov2015-04-151-3/+4
|
* fix adding projectsValery Sizov2015-04-101-1/+1
|
* remove protected attributesValery Sizov2015-04-091-2/+10
|
* added event serviceValery Sizov2015-03-261-8/+4
|
* events for adminValery Sizov2015-03-261-0/+5
|
* eventsValery Sizov2015-03-261-0/+4
|
* projects sorting by last_commit_dateValery Sizov2015-03-191-2/+2
|
* reset user session if token is invalidValery Sizov2015-02-241-0/+2
|
* Add check if user allowed to manage projectDmitriy Zaporozhets2015-01-131-0/+1
| | | | For now do this by check if user has access to GitLab project hooks
* skipping csrf checkValery Sizov2014-12-011-0/+1
|
* Refactor commits/builds logicDmitriy Zaporozhets2014-11-051-2/+2
| | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* Fix testsDmitriy Zaporozhets2014-11-041-1/+1
| | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* Partly integrate commitsDmitriy Zaporozhets2014-11-041-3/+3
| | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* Commit creates multiple builds nowDmitriy Zaporozhets2014-11-031-2/+2
| | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* make gitlab_ci able to skip refs from buildWilliam Herry2014-09-101-1/+1
|
* Redirect after sign in. Fix broken test.Marin Jankovski2014-07-011-1/+1
|
* Fix public scope, use new project field nameDmitriy Zaporozhets2014-01-301-1/+1
|
* Move badge image detection logic into separate serviceDmitriy Zaporozhets2014-01-291-9/+3
| | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* Improve project controllers specsDmitriy Zaporozhets2014-01-291-3/+3
| | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* CreateBuildService for build creation and more validation to build modelDmitriy Zaporozhets2014-01-291-12/+6
| | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* Move project creation logic into serviceDmitriy Zaporozhets2014-01-291-22/+1
| | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* Change default notification settings for new gitlab-ci projectsDmitriy Zaporozhets2014-01-281-0/+6
| | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* Merge github.com:gitlabhq/gitlab-ci into NewChartsPeter Golm2014-01-091-5/+5
|\ | | | | | | | | | | Conflicts: app/controllers/projects_controller.rb config/routes.rb
| * Rename status method in ProjectsControllerDmitriy Zaporozhets2013-12-081-5/+5
| | | | | | | | | | Status method is used by rails and should not be overwrited Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>