Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Sharkey
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Dima Krasner
Sharkey
Commits
a5660d6c
Unverified
Commit
a5660d6c
authored
6 years ago
by
syuilo
Committed by
GitHub
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Exploreページに新規ユーザー一覧を追加 (#4295)
parent
f632ec50
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CHANGELOG.md
+4
-0
4 additions, 0 deletions
CHANGELOG.md
locales/ja-JP.yml
+1
-0
1 addition, 0 deletions
locales/ja-JP.yml
src/client/app/common/views/pages/explore.vue
+11
-2
11 additions, 2 deletions
src/client/app/common/views/pages/explore.vue
with
16 additions
and
2 deletions
CHANGELOG.md
+
4
−
0
View file @
a5660d6c
ChangeLog
=========
unreleased
----------
*
Exploreページに新規ユーザー一覧を追加
10.
86.2
----------
*
別タブでルートより下を開いたときにはデッキにしないように
...
...
This diff is collapsed.
Click to expand it.
locales/ja-JP.yml
+
1
−
0
View file @
a5660d6c
...
...
@@ -224,6 +224,7 @@ common/views/pages/explore.vue:
verified-users
:
"
公式アカウント"
popular-users
:
"
人気のユーザー"
recently-updated-users
:
"
最近投稿したユーザー"
recently-registered-users
:
"
新規ユーザー"
common/views/components/games/reversi/reversi.vue
:
matching
:
...
...
This diff is collapsed.
Click to expand it.
src/client/app/common/views/pages/explore.vue
+
11
−
2
View file @
a5660d6c
...
...
@@ -9,13 +9,16 @@
<mk-user-list
:make-promise=
"recentlyUpdatedUsers"
>
<span><fa
:icon=
"faCommentAlt"
/>
{{
$t
(
'
recently-updated-users
'
)
}}
</span>
</mk-user-list>
<mk-user-list
:make-promise=
"recentlyRegisteredUsers"
>
<span><fa
:icon=
"faPlus"
/>
{{
$t
(
'
recently-registered-users
'
)
}}
</span>
</mk-user-list>
</div>
</
template
>
<
script
lang=
"ts"
>
import
Vue
from
'
vue
'
;
import
i18n
from
'
../../../i18n
'
;
import
{
faChartLine
}
from
'
@fortawesome/free-solid-svg-icons
'
;
import
{
faChartLine
,
faPlus
}
from
'
@fortawesome/free-solid-svg-icons
'
;
import
{
faBookmark
,
faCommentAlt
}
from
'
@fortawesome/free-regular-svg-icons
'
;
export
default
Vue
.
extend
({
...
...
@@ -40,7 +43,13 @@ export default Vue.extend({
sort
:
'
+updatedAt
'
,
limit
:
10
}),
faBookmark
,
faChartLine
,
faCommentAlt
recentlyRegisteredUsers
:
()
=>
this
.
$root
.
api
(
'
users
'
,
{
origin
:
'
local
'
,
state
:
'
alive
'
,
sort
:
'
+createdAt
'
,
limit
:
10
}),
faBookmark
,
faChartLine
,
faCommentAlt
,
faPlus
};
},
});
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment