summaryrefslogtreecommitdiff
path: root/app/serializers/pipeline_details_entity.rb
Commit message (Collapse)AuthorAgeFilesLines
* Add scheduled_actions as an explicit group of actionsShinya Maeda2018-10-021-0/+1
|
* Enable frozen string in app/serializers/**/*.rbrepo-forks/gitlab-ce-frozen-string-enable-app-serializersgfyoung2018-07-231-0/+2
| | | | Partially addresses #47424.
* Add a feature flag for switching pipeline stagesGrzegorz Bizon2018-05-291-1/+1
|
* Abstract persisted/legacy stages in pipeline modelGrzegorz Bizon2018-05-221-6/+1
|
* Use persisted stages to load pipelines index tableGrzegorz Bizon2018-05-211-1/+6
|
* Merge branch 'master' into feature/gb/persist-pipeline-stagesGrzegorz Bizon2017-06-051-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * master: (524 commits) Improve user experience around slash commands in instant comments Fix LFS timeouts when trying to save large files retryable? is now available for CommitStatus Resolve "Documentation of `.gitlab-ci.yml` states incorrect example for variables" Fix test failures Add slugify project path to CI enviroment variables Fixed typo: craeted -> created 32118 Make New environment empty state btn lowercase Expose import_status in Projects API 32832 Remove overflow from comment form for confidential issues and vertically aligns confidential issue icon Fix test failures Allow manual bypass of auto_sign_in_with_provider Fix keys seed Allow users to be hard-deleted from the API fixup some classnames and media queries Enable the Style/PreferredHashMethods cop Lint our factories creation in addition to their build Don’t schedule workers from inside transactions Allow scheduling from after_commit hooks Forbid Sidekiq scheduling in transactions ... Conflicts: app/serializers/pipeline_entity.rb db/schema.rb spec/factories/ci/stages.rb spec/lib/gitlab/import_export/safe_model_attributes.yml spec/services/ci/create_pipeline_service_spec.rb spec/spec_helper.rb
* Incorporate reviewZ.J. van de Weg2017-05-311-14/+0
|
* Create PipelineDetailsEntityZ.J. van de Weg2017-05-311-0/+21
Now we have a PipelineEntity which is a bit smaller, mostly in bytes needing to send to the frontend. PipelineDetailsEntity is the default for the PipelineSerializer, limiting the changes needed. This commit also incorporates the review.