Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
7e300596
Commit
7e300596
authored
Feb 25, 2020
by
GitLab Bot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add latest changes from gitlab-org/gitlab@master
parent
a8c82a63
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
4 deletions
+5
-4
doc/api/project_snippets.md
doc/api/project_snippets.md
+2
-2
doc/development/README.md
doc/development/README.md
+1
-0
qa/qa/specs/features/browser_ui/4_verify/ci_variable/add_remove_ci_variable_spec.rb
...er_ui/4_verify/ci_variable/add_remove_ci_variable_spec.rb
+1
-1
spec/support/helpers/metrics_dashboard_url_helpers.rb
spec/support/helpers/metrics_dashboard_url_helpers.rb
+1
-1
No files found.
doc/api/project_snippets.md
View file @
7e300596
...
...
@@ -123,7 +123,7 @@ Parameters:
Example request:
```
shell
curl
--request
PUT https://gitlab.com/api/v4/projects/:id/snippets
\
curl
--request
PUT https://gitlab.com/api/v4/projects/:id/snippets
/:snippet_id
\
--header
"PRIVATE-TOKEN: <your_access_token>"
\
--header
"Content-Type: application/json"
\
-d
@snippet.json
...
...
@@ -157,7 +157,7 @@ Parameters:
Example request:
```
shell
curl
--request
DELETE https://gitlab.com/api/v4/projects/:id/snippets
\
curl
--request
DELETE https://gitlab.com/api/v4/projects/:id/snippets
/:snippet_id
\
--header
"PRIVATE-TOKEN: <your_access_token>"
```
...
...
doc/development/README.md
View file @
7e300596
...
...
@@ -22,6 +22,7 @@ description: 'Learn how to contribute to GitLab.'
-
[
Code review guidelines
](
code_review.md
)
for reviewing code and having code reviewed
-
[
Database review guidelines
](
database_review.md
)
for reviewing database-related changes and complex SQL queries, and having them reviewed
-
[
Secure coding guidlines
](
https://gitlab.com/gitlab-com/gl-security/security-guidelines
)
-
[
Pipelines for the GitLab project
](
pipelines.md
)
Complementary reads:
...
...
qa/qa/specs/features/browser_ui/4_verify/ci_variable/add_remove_ci_variable_spec.rb
View file @
7e300596
...
...
@@ -2,7 +2,7 @@
module
QA
context
'Verify'
do
describe
'Add or Remove CI variable via UI'
,
:smoke
do
describe
'Add or Remove CI variable via UI'
,
:smoke
,
quarantine:
{
issue:
'https://gitlab.com/gitlab-org/gitlab/issues/207915'
,
type: :stale
}
do
let!
(
:project
)
do
Resource
::
Project
.
fabricate_via_api!
do
|
project
|
project
.
name
=
'project-with-ci-variables'
...
...
spec/support/helpers/metrics_dashboard_url_helpers.rb
View file @
7e300596
...
...
@@ -9,7 +9,7 @@ module MetricsDashboardUrlHelpers
end
def
clear_host_from_memoized_variables
[
:metrics_regex
,
:grafana_regex
,
:cluster
_metrics
,
:alerts
_regex
].
each
do
|
method_name
|
[
:metrics_regex
,
:grafana_regex
,
:cluster
s_regex
,
:alert
_regex
].
each
do
|
method_name
|
Gitlab
::
Metrics
::
Dashboard
::
Url
.
clear_memoization
(
method_name
)
end
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment