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
a97acfe5
Commit
a97acfe5
authored
Feb 06, 2020
by
GitLab Bot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add latest changes from gitlab-org/gitlab@master
parent
76623c12
Changes
15
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
329 additions
and
352 deletions
+329
-352
.eslintrc.yml
.eslintrc.yml
+6
-4
app/assets/javascripts/due_date_select.js
app/assets/javascripts/due_date_select.js
+1
-0
app/assets/javascripts/gl_dropdown.js
app/assets/javascripts/gl_dropdown.js
+1
-1
app/assets/javascripts/vue_merge_request_widget/components/states/mr_widget_failed_to_merge.vue
...st_widget/components/states/mr_widget_failed_to_merge.vue
+1
-1
changelogs/unreleased/sdesk-name-handler.yml
changelogs/unreleased/sdesk-name-handler.yml
+5
-0
db/migrate/20200202100932_add_service_desk_project_key.rb
db/migrate/20200202100932_add_service_desk_project_key.rb
+9
-0
db/schema.rb
db/schema.rb
+1
-0
doc/user/clusters/applications.md
doc/user/clusters/applications.md
+4
-0
doc/user/project/index.md
doc/user/project/index.md
+24
-2
package.json
package.json
+6
-6
spec/frontend/.eslintrc.yml
spec/frontend/.eslintrc.yml
+6
-0
spec/frontend/gl_field_errors_spec.js
spec/frontend/gl_field_errors_spec.js
+0
-2
spec/frontend/vue_shared/components/issue/issue_assignees_spec.js
...ntend/vue_shared/components/issue/issue_assignees_spec.js
+1
-1
spec/lib/gitlab/import_export/safe_model_attributes.yml
spec/lib/gitlab/import_export/safe_model_attributes.yml
+1
-0
yarn.lock
yarn.lock
+263
-335
No files found.
.eslintrc.yml
View file @
a97acfe5
...
@@ -51,8 +51,10 @@ rules:
...
@@ -51,8 +51,10 @@ rules:
no-jquery/no-serialize
:
error
no-jquery/no-serialize
:
error
promise/always-return
:
off
promise/always-return
:
off
promise/no-callback-in-promise
:
off
promise/no-callback-in-promise
:
off
# Make update to eslint@6 smoother:
prefer-object-spread
:
off
overrides
:
overrides
:
files
:
-
files
:
-
'
**/spec/**/*'
-
'
**/spec/**/*'
rules
:
rules
:
"
@gitlab/i18n/no-non-i18n-strings"
:
off
"
@gitlab/i18n/no-non-i18n-strings"
:
off
app/assets/javascripts/due_date_select.js
View file @
a97acfe5
/* eslint-disable max-classes-per-file */
import
$
from
'
jquery
'
;
import
$
from
'
jquery
'
;
import
Pikaday
from
'
pikaday
'
;
import
Pikaday
from
'
pikaday
'
;
import
dateFormat
from
'
dateformat
'
;
import
dateFormat
from
'
dateformat
'
;
...
...
app/assets/javascripts/gl_dropdown.js
View file @
a97acfe5
/* eslint-disable one-var, consistent-return */
/* eslint-disable
max-classes-per-file,
one-var, consistent-return */
import
$
from
'
jquery
'
;
import
$
from
'
jquery
'
;
import
_
from
'
underscore
'
;
import
_
from
'
underscore
'
;
...
...
app/assets/javascripts/vue_merge_request_widget/components/states/mr_widget_failed_to_merge.vue
View file @
a97acfe5
...
@@ -61,7 +61,7 @@ export default {
...
@@ -61,7 +61,7 @@ export default {
eventHub
.
$emit
(
'
EnablePolling
'
);
eventHub
.
$emit
(
'
EnablePolling
'
);
},
},
updateTimer
()
{
updateTimer
()
{
this
.
timer
=
this
.
timer
-
1
;
this
.
timer
-=
1
;
if
(
this
.
timer
===
0
)
{
if
(
this
.
timer
===
0
)
{
this
.
refresh
();
this
.
refresh
();
...
...
changelogs/unreleased/sdesk-name-handler.yml
0 → 100644
View file @
a97acfe5
---
title
:
Added migration which adds project_key column to service_desk_settings.
merge_request
:
24063
author
:
type
:
added
db/migrate/20200202100932_add_service_desk_project_key.rb
0 → 100644
View file @
a97acfe5
# frozen_string_literal: true
class
AddServiceDeskProjectKey
<
ActiveRecord
::
Migration
[
5.2
]
DOWNTIME
=
false
def
change
add_column
:service_desk_settings
,
:project_key
,
:string
,
limit:
255
end
end
db/schema.rb
View file @
a97acfe5
...
@@ -3797,6 +3797,7 @@ ActiveRecord::Schema.define(version: 2020_02_04_131054) do
...
@@ -3797,6 +3797,7 @@ ActiveRecord::Schema.define(version: 2020_02_04_131054) do
create_table
"service_desk_settings"
,
primary_key:
"project_id"
,
id: :bigint
,
default:
nil
,
force: :cascade
do
|
t
|
create_table
"service_desk_settings"
,
primary_key:
"project_id"
,
id: :bigint
,
default:
nil
,
force: :cascade
do
|
t
|
t
.
string
"issue_template_key"
,
limit:
255
t
.
string
"issue_template_key"
,
limit:
255
t
.
string
"outgoing_name"
,
limit:
255
t
.
string
"outgoing_name"
,
limit:
255
t
.
string
"project_key"
,
limit:
255
end
end
create_table
"services"
,
id: :serial
,
force: :cascade
do
|
t
|
create_table
"services"
,
id: :serial
,
force: :cascade
do
|
t
|
...
...
doc/user/clusters/applications.md
View file @
a97acfe5
...
@@ -9,6 +9,10 @@ and [deployments](../../ci/environments.md) when using [Auto DevOps](../../topic
...
@@ -9,6 +9,10 @@ and [deployments](../../ci/environments.md) when using [Auto DevOps](../../topic
You can install them after you
You can install them after you
[
create a cluster
](
../project/clusters/add_remove_clusters.md
)
.
[
create a cluster
](
../project/clusters/add_remove_clusters.md
)
.
Interested in contributing a new GitLab managed app? Visit the
[
development guidelines page
](
../../development/kubernetes.md#gitlab-managed-apps
)
to get started.
## Installing applications
## Installing applications
Applications managed by GitLab will be installed onto the
`gitlab-managed-apps`
namespace.
Applications managed by GitLab will be installed onto the
`gitlab-managed-apps`
namespace.
...
...
doc/user/project/index.md
View file @
a97acfe5
...
@@ -114,15 +114,37 @@ Learn how to [create a new project](../../gitlab-basics/create-project.md) in Gi
...
@@ -114,15 +114,37 @@ Learn how to [create a new project](../../gitlab-basics/create-project.md) in Gi
### Fork a project
### Fork a project
You can
[
fork a project
](
../../gitlab-basics/fork-project
.md
)
in order to:
You can
[
fork a project
](
repository/forking_workflow
.md
)
in order to:
-
Collaborate on code by forking a project and creating a merge request
-
Collaborate on code by forking a project and creating a merge request
from your fork to the upstream project
from your fork to the upstream project
-
Fork a sample project to work on the top of that
-
Fork a sample project to work on the top of that
### Star a project
You can star a project to make it easier to find projects you frequently use.
The number of stars a project has can indicate its popularity.
To star a project:
1.
Go to the home page of the project you want to star.
1.
In the upper right corner of the page, click
**Star**
.
To view your starred projects:
1.
Click
**Projects**
in the navigation bar.
1.
Click
**Starred Projects**
.
1.
GitLab displays information about your starred projects, including:
-
Project description, including name, description, and icon
-
Number of times this project has been starred
-
Number of times this project has been forked
-
Number of open merge requests
-
Number of open issues
## Project settings
## Project settings
Set the project's visibility level and
the access levels to its various pages
Set the project's visibility level and the access levels to its various pages
and perform actions like archiving, renaming or transferring a project.
and perform actions like archiving, renaming or transferring a project.
Read through the documentation on
[
project settings
](
settings/index.md
)
.
Read through the documentation on
[
project settings
](
settings/index.md
)
.
...
...
package.json
View file @
a97acfe5
...
@@ -146,9 +146,9 @@
...
@@ -146,9 +146,9 @@
},
},
"devDependencies"
:
{
"devDependencies"
:
{
"
@babel/plugin-transform-modules-commonjs
"
:
"
^7.5.0
"
,
"
@babel/plugin-transform-modules-commonjs
"
:
"
^7.5.0
"
,
"
@gitlab/eslint-config
"
:
"
^
2.1.2
"
,
"
@gitlab/eslint-config
"
:
"
^
3.0.0
"
,
"
@gitlab/eslint-plugin-i18n
"
:
"
^1.1.0
"
,
"
@gitlab/eslint-plugin-i18n
"
:
"
^1.1.0
"
,
"
@gitlab/eslint-plugin-vue-i18n
"
:
"
^
1.2
.0
"
,
"
@gitlab/eslint-plugin-vue-i18n
"
:
"
^
2.0
.0
"
,
"
@vue/test-utils
"
:
"
^1.0.0-beta.30
"
,
"
@vue/test-utils
"
:
"
^1.0.0-beta.30
"
,
"
axios-mock-adapter
"
:
"
^1.15.0
"
,
"
axios-mock-adapter
"
:
"
^1.15.0
"
,
"
babel-jest
"
:
"
^24.1.0
"
,
"
babel-jest
"
:
"
^24.1.0
"
,
...
@@ -159,10 +159,10 @@
...
@@ -159,10 +159,10 @@
"
commander
"
:
"
^2.18.0
"
,
"
commander
"
:
"
^2.18.0
"
,
"
custom-jquery-matchers
"
:
"
^2.1.0
"
,
"
custom-jquery-matchers
"
:
"
^2.1.0
"
,
"
docdash
"
:
"
^1.0.2
"
,
"
docdash
"
:
"
^1.0.2
"
,
"
eslint
"
:
"
~
5.9
.0
"
,
"
eslint
"
:
"
~
6.8
.0
"
,
"
eslint-import-resolver-jest
"
:
"
^
2.1.1
"
,
"
eslint-import-resolver-jest
"
:
"
^
3.0.0
"
,
"
eslint-import-resolver-webpack
"
:
"
^0.1
0
.1
"
,
"
eslint-import-resolver-webpack
"
:
"
^0.1
2
.1
"
,
"
eslint-plugin-jasmine
"
:
"
^
2.10.1
"
,
"
eslint-plugin-jasmine
"
:
"
^
4.1.0
"
,
"
eslint-plugin-jest
"
:
"
^22.3.0
"
,
"
eslint-plugin-jest
"
:
"
^22.3.0
"
,
"
eslint-plugin-no-jquery
"
:
"
^2.3.0
"
,
"
eslint-plugin-no-jquery
"
:
"
^2.3.0
"
,
"
gettext-extractor
"
:
"
^3.4.3
"
,
"
gettext-extractor
"
:
"
^3.4.3
"
,
...
...
spec/frontend/.eslintrc.yml
View file @
a97acfe5
...
@@ -6,6 +6,12 @@ plugins:
...
@@ -6,6 +6,12 @@ plugins:
extends
:
extends
:
-
'
plugin:jest/recommended'
-
'
plugin:jest/recommended'
settings
:
settings
:
# We have to teach eslint-plugin-import what node modules we use
# otherwise there is an error when it tries to resolve them
import/core-modules
:
-
events
-
fs
-
path
import/resolver
:
import/resolver
:
jest
:
jest
:
jestConfigFile
:
'
jest.config.js'
jestConfigFile
:
'
jest.config.js'
...
...
spec/frontend/gl_field_errors_spec.js
View file @
a97acfe5
/* eslint-disable arrow-body-style */
import
$
from
'
jquery
'
;
import
$
from
'
jquery
'
;
import
GlFieldErrors
from
'
~/gl_field_errors
'
;
import
GlFieldErrors
from
'
~/gl_field_errors
'
;
...
...
spec/frontend/vue_shared/components/issue/issue_assignees_spec.js
View file @
a97acfe5
...
@@ -18,7 +18,7 @@ describe('IssueAssigneesComponent', () => {
...
@@ -18,7 +18,7 @@ describe('IssueAssigneesComponent', () => {
...
props
,
...
props
,
},
},
});
});
vm
=
wrapper
.
vm
;
// eslint-disable-line
vm
=
wrapper
.
vm
;
};
};
const
findTooltipText
=
()
=>
wrapper
.
find
(
'
.js-assignee-tooltip
'
).
text
();
const
findTooltipText
=
()
=>
wrapper
.
find
(
'
.js-assignee-tooltip
'
).
text
();
...
...
spec/lib/gitlab/import_export/safe_model_attributes.yml
View file @
a97acfe5
...
@@ -783,6 +783,7 @@ ZoomMeeting:
...
@@ -783,6 +783,7 @@ ZoomMeeting:
ServiceDeskSetting
:
ServiceDeskSetting
:
-
project_id
-
project_id
-
issue_template_key
-
issue_template_key
-
project_key
ContainerExpirationPolicy
:
ContainerExpirationPolicy
:
-
created_at
-
created_at
-
updated_at
-
updated_at
...
...
yarn.lock
View file @
a97acfe5
This diff is collapsed.
Click to expand it.
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