mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Chore: Fix times in schemas (#64906)
* Fix times in schemas * Fix frontend lints
This commit is contained in:
@@ -26,7 +26,7 @@ export interface ServiceAccount {
|
||||
/**
|
||||
* Created indicates when the service account was created.
|
||||
*/
|
||||
created?: number;
|
||||
created?: string;
|
||||
/**
|
||||
* ID is the unique identifier of the service account in the database.
|
||||
*/
|
||||
@@ -63,7 +63,7 @@ export interface ServiceAccount {
|
||||
/**
|
||||
* Updated indicates when the service account was updated.
|
||||
*/
|
||||
updated?: number;
|
||||
updated?: string;
|
||||
}
|
||||
|
||||
export const defaultServiceAccount: Partial<ServiceAccount> = {
|
||||
|
||||
@@ -27,7 +27,7 @@ export interface Team {
|
||||
/**
|
||||
* Created indicates when the team was created.
|
||||
*/
|
||||
created: number;
|
||||
created: string;
|
||||
/**
|
||||
* Email of the team.
|
||||
*/
|
||||
@@ -51,5 +51,5 @@ export interface Team {
|
||||
/**
|
||||
* Updated indicates when the team was updated.
|
||||
*/
|
||||
updated: number;
|
||||
updated: string;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user