]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/ceph/block/rbd-images/rbd-images.component.ts
update download target update for octopus release
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / ceph / block / rbd-images / rbd-images.component.ts
1 import { Component, OnInit } from '@angular/core';
2
3 import { Permission } from '../../../shared/models/permissions';
4 import { AuthStorageService } from '../../../shared/services/auth-storage.service';
5
6 @Component({
7 selector: 'cd-rbd-images',
8 templateUrl: './rbd-images.component.html',
9 styleUrls: ['./rbd-images.component.scss']
10 })
11 export class RbdImagesComponent implements OnInit {
12 grafanaPermission: Permission;
13
14 constructor(private authStorageService: AuthStorageService) {
15 this.grafanaPermission = this.authStorageService.getPermissions().grafana;
16 }
17
18 ngOnInit() {}
19 }