feat(ui+backend): project params persistence
This commit is contained in:
@ -18,6 +18,18 @@ input ProjectTaskEstimationsChanges {
|
||||
pessimistic: Float
|
||||
}
|
||||
|
||||
input ProjectParamsChanges {
|
||||
timeUnit: TimeUnitChanges
|
||||
currency: String
|
||||
roundUpEstimations: Boolean
|
||||
hideFinancialPreviewOnPrint: Boolean
|
||||
}
|
||||
|
||||
input TimeUnitChanges {
|
||||
label: String
|
||||
acronym: String
|
||||
}
|
||||
|
||||
type Mutation {
|
||||
updateUser(id: ID!, changes: UserChanges!): User!
|
||||
createProject(changes: CreateProjectChanges!): Project!
|
||||
@ -25,4 +37,5 @@ type Mutation {
|
||||
addProjectTask(projectId: ID!, changes: ProjectTaskChanges!): Task!
|
||||
removeProjectTask(projectId: ID!, taskId: ID!): Boolean!
|
||||
updateProjectTask(projectId: ID!, taskId: ID!, changes: ProjectTaskChanges!): Task!
|
||||
updateProjectParams(projectId: ID!, changes: ProjectParamsChanges!): ProjectParams!
|
||||
}
|
Reference in New Issue
Block a user