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
a0bb5886
Commit
a0bb5886
authored
Aug 18, 2017
by
Torkel Ödegaard
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'develop' into develop-newgrid-row-panels
parents
55c6b4b9
dc249cf9
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
38 additions
and
27 deletions
+38
-27
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/app/features/org/specs/user_group_details_ctrl_specs.ts
+2
-1
public/app/features/playlist/specs/playlist_edit_ctrl_specs.ts
+3
-1
public/sass/components/_gf-form.scss
+1
-1
public/test/test-main.js
+1
-0
tasks/options/watch.js
+1
-0
No files found.
pkg/api/index.go
View file @
a0bb5886
...
...
@@ -235,13 +235,20 @@ func setIndexViewData(c *middleware.Context) (*dtos.IndexViewData, error) {
},
},
{
Text
:
"
Us
ers"
,
Text
:
"
Memb
ers"
,
Id
:
"users"
,
Description
:
"Manage
users & user group
s"
,
Icon
:
"
fa fa-fw fa
-users"
,
Description
:
"Manage
org member
s"
,
Icon
:
"
icon-gf icon-gf
-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"
,
Id
:
"apikeys"
,
Description
:
"Create & manage API keys"
,
...
...
pkg/api/user.go
View file @
a0bb5886
package
api
import
(
"github.com/grafana/grafana/pkg/api/dtos"
"github.com/grafana/grafana/pkg/bus"
"github.com/grafana/grafana/pkg/middleware"
m
"github.com/grafana/grafana/pkg/models"
...
...
@@ -247,6 +248,10 @@ func searchUser(c *middleware.Context) (*m.SearchUsersQuery, error) {
return
nil
,
err
}
for
_
,
user
:=
range
query
.
Result
.
Users
{
user
.
AvatarUrl
=
dtos
.
GetGravatarUrl
(
user
.
Email
)
}
query
.
Result
.
Page
=
page
query
.
Result
.
PerPage
=
perPage
...
...
pkg/models/user.go
View file @
a0bb5886
...
...
@@ -197,6 +197,7 @@ type UserSearchHitDTO struct {
Name
string
`json:"name"`
Login
string
`json:"login"`
Email
string
`json:"email"`
AvatarUrl
string
`json:"avatarUrl"`
IsAdmin
bool
`json:"isAdmin"`
LastSeenAt
time
.
Time
`json:"lastSeenAt"`
LastSeenAtAge
string
`json:"lastSeenAtAge"`
...
...
public/app/features/admin/partials/users.html
View file @
a0bb5886
...
...
@@ -21,8 +21,7 @@
<table
class=
"filter-table form-inline"
>
<thead>
<tr>
<th>
Id
</th>
<th>
Name
</th>
<th></th>
<th>
Login
</th>
<th>
Email
</th>
<th>
...
...
@@ -35,8 +34,9 @@
</thead>
<tbody>
<tr
ng-repeat=
"user in ctrl.users"
>
<td>
{{user.id}}
</td>
<td>
{{user.name}}
</td>
<td
class=
"width-4 text-center"
>
<img
class=
"filter-table__avatar"
ng-src=
"{{user.avatarUrl}}"
></img>
</td>
<td>
{{user.login}}
</td>
<td>
{{user.email}}
</td>
<td>
...
...
public/app/features/org/partials/orgUsers.html
View file @
a0bb5886
...
...
@@ -2,20 +2,18 @@
<div
class=
"page-container"
>
<div
class=
"page-header"
>
<h1>
<i
class=
"{{ctrl.navModel.node.icon}}"
></i>
{{ctrl.navModel.node.text}}
</h1>
<page-h1
model=
"ctrl.navModel"
></page-h1>
<button
class=
"btn btn-success"
ng-click=
"ctrl.openAddUsersView()"
ng-hide=
"ctrl.externalUserMngLinkUrl"
>
<i
class=
"fa fa-plus"
></i>
<span>
{{ctrl.addUsersBtnName}}
</span>
</button>
<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>
{{ctrl.addUsersBtnName}}
{{ctrl.addUsersBtnName}}
</a>
<ul
class=
"gf-tabs"
>
...
...
@@ -24,13 +22,8 @@
Users ({{ctrl.users.length}})
</a>
</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"
>
<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}})
</a>
</li>
...
...
@@ -79,7 +72,7 @@
</table>
</div>
<div
ng-if=
"ctrl.editor.index ===
2
"
>
<div
ng-if=
"ctrl.editor.index ===
1
"
>
<table
class=
"filter-table form-inline"
>
<thead>
<tr>
...
...
public/app/features/org/specs/user_group_details_ctrl_specs.ts
View file @
a0bb5886
...
...
@@ -19,7 +19,8 @@ var backendSrv = {
ctx
.
ctrl
=
$controller
(
UserGroupDetailsCtrl
,
{
$scope
:
ctx
.
scope
,
backendSrv
:
backendSrv
,
$routeParams
:
{
id
:
1
}
$routeParams
:
{
id
:
1
},
navModelSrv
:
{
getNav
:
sinon
.
stub
()}
});
}));
...
...
public/app/features/playlist/specs/playlist_edit_ctrl_specs.ts
View file @
a0bb5886
...
...
@@ -6,7 +6,9 @@ describe('PlaylistEditCtrl', () => {
var
ctx
:
any
;
beforeEach
(()
=>
{
let
navModelSrv
=
{
getPlaylistsNav
:
page
=>
{},
getNav
:
()
=>
{
return
{
breadcrumbs
:
[],
node
:
{}};
},
};
ctx
=
new
PlaylistEditCtrl
(
null
,
null
,
null
,
null
,
{
current
:
{
params
:
{}
}
},
navModelSrv
);
...
...
public/sass/components/_gf-form.scss
View file @
a0bb5886
$gf-form-margin
:
0
.1rem
;
$gf-form-margin
:
1px
;
.gf-form
{
margin-bottom
:
$gf-form-margin
;
...
...
public/test/test-main.js
View file @
a0bb5886
...
...
@@ -10,6 +10,7 @@
baseURL
:
'/base/'
,
defaultJSExtensions
:
true
,
paths
:
{
'gemini-scrollbar'
:
'vendor/npm/gemini-scrollbar/index.js'
,
'mousetrap'
:
'vendor/npm/mousetrap/mousetrap.js'
,
'eventemitter3'
:
'vendor/npm/eventemitter3/index.js'
,
'remarkable'
:
'vendor/npm/remarkable/dist/remarkable.js'
,
...
...
tasks/options/watch.js
View file @
a0bb5886
...
...
@@ -24,6 +24,7 @@ module.exports = function(config, grunt) {
gaze
([
config
.
srcDir
+
'/sass/**/*'
,
config
.
srcDir
+
'/app/**/*'
,
config
.
srcDir
+
'/test/**/*'
,
config
.
srcDir
+
'/vendor/npm/gemini-scrollbar/*.js'
,
],
function
(
err
,
watcher
)
{
...
...
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