mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-14 03:02:15 +01:00
add employees_can_see_billable_rates setting to organization settings
This commit is contained in:
committed by
Constantin Graf
parent
51cd919db6
commit
6c7b1b3f21
@@ -51,12 +51,14 @@ const OrganizationResource = z
|
||||
name: z.string(),
|
||||
is_personal: z.boolean(),
|
||||
billable_rate: z.union([z.number(), z.null()]),
|
||||
employees_can_see_billable_rates: z.boolean(),
|
||||
})
|
||||
.passthrough();
|
||||
const OrganizationUpdateRequest = z
|
||||
.object({
|
||||
name: z.string().max(255),
|
||||
billable_rate: z.union([z.number(), z.null()]).optional(),
|
||||
employees_can_see_billable_rates: z.boolean().optional(),
|
||||
})
|
||||
.passthrough();
|
||||
const ProjectResource = z
|
||||
|
||||
Reference in New Issue
Block a user