Add FileStashUrl type and Query methods***

***Add Control component and update Header component***
***Add control.tmpl template***
***Update rollup.config.mjs***
***Update routes.go***
***Add VerticalTab and LinuxUser components
This commit is contained in:
sanjay7178
2024-02-20 03:03:07 +05:30
parent 72c5a3dd5e
commit ad998910a0
13 changed files with 684 additions and 899 deletions

View File

@@ -328,3 +328,13 @@ input PageRequest {
itemsPerPage: Int!
page: Int!
}
type FileStashUrl {
id: ID!
url: String!
}
type Query {
getFileStashUrl(id: ID!): FileStashUrl
getAllFileStashUrls: [FileStashUrl]
}