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
b660b5ca
Commit
b660b5ca
authored
Dec 06, 2021
by
Mike Greiling
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove vestigial traces of the obsolete GitLab UI help page
parent
58d963e3
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
35 deletions
+0
-35
app/assets/javascripts/pages/help/ui/index.js
app/assets/javascripts/pages/help/ui/index.js
+0
-3
app/assets/javascripts/ui_development_kit.js
app/assets/javascripts/ui_development_kit.js
+0
-28
app/controllers/help_controller.rb
app/controllers/help_controller.rb
+0
-4
No files found.
app/assets/javascripts/pages/help/ui/index.js
deleted
100644 → 0
View file @
58d963e3
import
initUIKit
from
'
~/ui_development_kit
'
;
initUIKit
();
app/assets/javascripts/ui_development_kit.js
deleted
100644 → 0
View file @
58d963e3
import
$
from
'
jquery
'
;
import
initDeprecatedJQueryDropdown
from
'
~/deprecated_jquery_dropdown
'
;
import
Api
from
'
./api
'
;
export
default
()
=>
{
initDeprecatedJQueryDropdown
(
$
(
'
#js-project-dropdown
'
),
{
data
:
(
term
,
callback
)
=>
{
Api
.
projects
(
term
,
{
order_by
:
'
last_activity_at
'
,
},
(
data
)
=>
{
callback
(
data
);
},
);
},
text
:
(
project
)
=>
project
.
name_with_namespace
||
project
.
name
,
selectable
:
true
,
fieldName
:
'
author_id
'
,
filterable
:
true
,
search
:
{
fields
:
[
'
name_with_namespace
'
],
},
id
:
(
data
)
=>
data
.
id
,
isSelected
:
(
data
)
=>
data
.
id
===
2
,
});
};
app/controllers/help_controller.rb
View file @
b660b5ca
...
...
@@ -59,10 +59,6 @@ class HelpController < ApplicationController
@instance_configuration
=
InstanceConfiguration
.
new
end
def
ui
@user
=
User
.
new
(
id:
0
,
name:
'John Doe'
,
username:
'@johndoe'
)
end
private
def
path_params
...
...
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