Skip to content

Financial Approvers #3206

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 9, 2024
Merged

Financial Approvers #3206

merged 1 commit into from
May 9, 2024

Conversation

CarsonF
Copy link
Member

@CarsonF CarsonF commented May 9, 2024

No description provided.

@CarsonF CarsonF mentioned this pull request May 9, 2024
1 task
Copy link

github-actions bot commented May 9, 2024

🗞 GraphQL Summary

View schema changes
@@ -3086,8 +3086,11 @@
   @sensitive-secrets
   """
   resetPassword(input: ResetPasswordInput!): ResetPasswordOutput!
 
+  """Set a user as a financial approver for some project types"""
+  setProjectTypeFinancialApprover(input: ProjectTypeFinancialApproverInput!): ProjectTypeFinancialApprover
+
   """Toggles the pinned state for the resource ID for the requesting user"""
   togglePinned(
     """A resource ID"""
     id: ID!
@@ -4655,8 +4658,18 @@
   """
   MultiplicationTranslation
 }
 
+type ProjectTypeFinancialApprover {
+  projectTypes: [ProjectType!]!
+  user: User!
+}
+
+input ProjectTypeFinancialApproverInput {
+  projectTypes: [ProjectType!]!
+  user: ID!
+}
+
 type Prompt {
   """Whether the requesting user can delete this resource"""
   canDelete: Boolean!
   createdAt: DateTime!
@@ -4860,8 +4873,9 @@
   projectMember(id: ID!): ProjectMember! @deprecated(reason: "Query via project instead")
 
   """Look up project members"""
   projectMembers(input: ProjectMemberListInput = {count: 25, filter: {}, order: ASC, page: 1, sort: "createdAt"}): ProjectMemberListOutput! @deprecated(reason: "Query via project instead")
+  projectTypeFinancialApprovers(projectTypes: [ProjectType!]): [ProjectTypeFinancialApprover!]!
 
   """Look up projects"""
   projects(input: ProjectListInput = {count: 25, filter: {}, order: ASC, page: 1, sort: "name"}): ProjectListOutput!
 

@CarsonF CarsonF merged commit bffa83a into develop May 9, 2024
20 of 21 checks passed
@CarsonF CarsonF deleted the financial-approvers branch May 9, 2024 20:29
adam-soltech pushed a commit that referenced this pull request May 29, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant