Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
011c582e
Commit
011c582e
authored
Aug 18, 2017
by
Torkel Ödegaard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
minor user avatar stuff
parent
d452d3ce
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
31 additions
and
25 deletions
+31
-25
pkg/api/index.go
+10
-3
pkg/api/user.go
+5
-0
pkg/models/user.go
+1
-0
public/app/features/admin/partials/users.html
+4
-4
public/app/features/org/partials/orgUsers.html
+10
-17
public/sass/components/_gf-form.scss
+1
-1
No files found.
pkg/api/index.go
View file @
011c582e
...
@@ -235,13 +235,20 @@ func setIndexViewData(c *middleware.Context) (*dtos.IndexViewData, error) {
...
@@ -235,13 +235,20 @@ func setIndexViewData(c *middleware.Context) (*dtos.IndexViewData, error) {
},
},
},
},
{
{
Text
:
"
Us
ers"
,
Text
:
"
Memb
ers"
,
Id
:
"users"
,
Id
:
"users"
,
Description
:
"Manage
users & user group
s"
,
Description
:
"Manage
org member
s"
,
Icon
:
"
fa fa-fw fa
-users"
,
Icon
:
"
icon-gf icon-gf
-users"
,
Url
:
setting
.
AppSubUrl
+
"/org/users"
,
Url
:
setting
.
AppSubUrl
+
"/org/users"
,
},
},
{
{
Text
:
"Groups"
,
Id
:
"users"
,
Description
:
"Manage org groups"
,
Icon
:
"fa fa-fw fa-users"
,
Url
:
setting
.
AppSubUrl
+
"/org/user-groups"
,
},
{
Text
:
"API Keys"
,
Text
:
"API Keys"
,
Id
:
"apikeys"
,
Id
:
"apikeys"
,
Description
:
"Create & manage API keys"
,
Description
:
"Create & manage API keys"
,
...
...
pkg/api/user.go
View file @
011c582e
package
api
package
api
import
(
import
(
"github.com/grafana/grafana/pkg/api/dtos"
"github.com/grafana/grafana/pkg/bus"
"github.com/grafana/grafana/pkg/bus"
"github.com/grafana/grafana/pkg/middleware"
"github.com/grafana/grafana/pkg/middleware"
m
"github.com/grafana/grafana/pkg/models"
m
"github.com/grafana/grafana/pkg/models"
...
@@ -247,6 +248,10 @@ func searchUser(c *middleware.Context) (*m.SearchUsersQuery, error) {
...
@@ -247,6 +248,10 @@ func searchUser(c *middleware.Context) (*m.SearchUsersQuery, error) {
return
nil
,
err
return
nil
,
err
}
}
for
_
,
user
:=
range
query
.
Result
.
Users
{
user
.
AvatarUrl
=
dtos
.
GetGravatarUrl
(
user
.
Email
)
}
query
.
Result
.
Page
=
page
query
.
Result
.
Page
=
page
query
.
Result
.
PerPage
=
perPage
query
.
Result
.
PerPage
=
perPage
...
...
pkg/models/user.go
View file @
011c582e
...
@@ -197,6 +197,7 @@ type UserSearchHitDTO struct {
...
@@ -197,6 +197,7 @@ type UserSearchHitDTO struct {
Name
string
`json:"name"`
Name
string
`json:"name"`
Login
string
`json:"login"`
Login
string
`json:"login"`
Email
string
`json:"email"`
Email
string
`json:"email"`
AvatarUrl
string
`json:"avatarUrl"`
IsAdmin
bool
`json:"isAdmin"`
IsAdmin
bool
`json:"isAdmin"`
LastSeenAt
time
.
Time
`json:"lastSeenAt"`
LastSeenAt
time
.
Time
`json:"lastSeenAt"`
LastSeenAtAge
string
`json:"lastSeenAtAge"`
LastSeenAtAge
string
`json:"lastSeenAtAge"`
...
...
public/app/features/admin/partials/users.html
View file @
011c582e
...
@@ -21,8 +21,7 @@
...
@@ -21,8 +21,7 @@
<table
class=
"filter-table form-inline"
>
<table
class=
"filter-table form-inline"
>
<thead>
<thead>
<tr>
<tr>
<th>
Id
</th>
<th></th>
<th>
Name
</th>
<th>
Login
</th>
<th>
Login
</th>
<th>
Email
</th>
<th>
Email
</th>
<th>
<th>
...
@@ -35,8 +34,9 @@
...
@@ -35,8 +34,9 @@
</thead>
</thead>
<tbody>
<tbody>
<tr
ng-repeat=
"user in ctrl.users"
>
<tr
ng-repeat=
"user in ctrl.users"
>
<td>
{{user.id}}
</td>
<td
class=
"width-4 text-center"
>
<td>
{{user.name}}
</td>
<img
class=
"filter-table__avatar"
ng-src=
"{{user.avatarUrl}}"
></img>
</td>
<td>
{{user.login}}
</td>
<td>
{{user.login}}
</td>
<td>
{{user.email}}
</td>
<td>
{{user.email}}
</td>
<td>
<td>
...
...
public/app/features/org/partials/orgUsers.html
View file @
011c582e
...
@@ -2,20 +2,18 @@
...
@@ -2,20 +2,18 @@
<div
class=
"page-container"
>
<div
class=
"page-container"
>
<div
class=
"page-header"
>
<div
class=
"page-header"
>
<h1>
<page-h1
model=
"ctrl.navModel"
></page-h1>
<i
class=
"{{ctrl.navModel.node.icon}}"
></i>
{{ctrl.navModel.node.text}}
<button
class=
"btn btn-success"
ng-click=
"ctrl.openAddUsersView()"
ng-hide=
"ctrl.externalUserMngLinkUrl"
>
</h1>
<i
class=
"fa fa-plus"
></i>
<span>
{{ctrl.addUsersBtnName}}
</span>
</button>
<div
class=
"page-header-tabs"
>
<div
class=
"page-header-tabs"
>
<button
class=
"btn btn-success"
ng-click=
"ctrl.openAddUsersView()"
ng-hide=
"ctrl.externalUserMngLinkUrl"
>
<i
class=
"fa fa-plus"
></i>
<span>
{{ctrl.addUsersBtnName}}
</span>
</button>
<a
class=
"btn btn-inverse"
ng-href=
"{{ctrl.externalUserMngLinkUrl}}"
target=
"_blank"
ng-if=
"ctrl.externalUserMngLinkUrl"
>
<a
class=
"btn btn-inverse"
ng-href=
"{{ctrl.externalUserMngLinkUrl}}"
target=
"_blank"
ng-if=
"ctrl.externalUserMngLinkUrl"
>
<i
class=
"fa fa-external-link-square"
></i>
<i
class=
"fa fa-external-link-square"
></i>
{{ctrl.addUsersBtnName}}
{{ctrl.addUsersBtnName}}
</a>
</a>
<ul
class=
"gf-tabs"
>
<ul
class=
"gf-tabs"
>
...
@@ -24,13 +22,8 @@
...
@@ -24,13 +22,8 @@
Users ({{ctrl.users.length}})
Users ({{ctrl.users.length}})
</a>
</a>
</li>
</li>
<li
class=
"gf-tabs-item"
>
<a
class=
"gf-tabs-link"
ng-click=
"ctrl.editor.index = 1"
ng-class=
"{active: ctrl.editor.index === 1}"
>
Groups (0)
</a>
</li>
<li
class=
"gf-tabs-item"
ng-show=
"ctrl.pendingInvites.length"
>
<li
class=
"gf-tabs-item"
ng-show=
"ctrl.pendingInvites.length"
>
<a
class=
"gf-tabs-link"
ng-click=
"ctrl.editor.index =
2"
ng-class=
"{active: ctrl.editor.index === 2
}"
>
<a
class=
"gf-tabs-link"
ng-click=
"ctrl.editor.index =
1"
ng-class=
"{active: ctrl.editor.index === 1
}"
>
Pending Invitations ({{ctrl.pendingInvites.length}})
Pending Invitations ({{ctrl.pendingInvites.length}})
</a>
</a>
</li>
</li>
...
@@ -79,7 +72,7 @@
...
@@ -79,7 +72,7 @@
</table>
</table>
</div>
</div>
<div
ng-if=
"ctrl.editor.index ===
2
"
>
<div
ng-if=
"ctrl.editor.index ===
1
"
>
<table
class=
"filter-table form-inline"
>
<table
class=
"filter-table form-inline"
>
<thead>
<thead>
<tr>
<tr>
...
...
public/sass/components/_gf-form.scss
View file @
011c582e
$gf-form-margin
:
0
.1rem
;
$gf-form-margin
:
1px
;
.gf-form
{
.gf-form
{
margin-bottom
:
$gf-form-margin
;
margin-bottom
:
$gf-form-margin
;
...
...
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