Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 4ac4749

Browse filesBrowse files
fix: report combined member limit in group AI spend (#27589) (#27639)
Cherry-pick of #27589 Original PR: #27589 — fix: report combined member limit in group AI spend Merge commit: 0b40950 Requested by: @ssncferreira Co-authored-by: Susana Ferreira <susana@coder.com>
1 parent 6dbc900 commit 4ac4749
Copy full SHA for 4ac4749

14 files changed

+705-177Lines changed: 705 additions & 177 deletions

File tree

Expand file treeCollapse file tree
Open diff view settings
Filter options
Expand file treeCollapse file tree
Open diff view settings
Collapse file

‎coderd/apidoc/docs.go‎

Copy file name to clipboardExpand all lines: coderd/apidoc/docs.go
+12-4Lines changed: 12 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Collapse file

‎coderd/apidoc/swagger.json‎

Copy file name to clipboardExpand all lines: coderd/apidoc/swagger.json
+12-4Lines changed: 12 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Collapse file

‎coderd/database/db2sdk/db2sdk.go‎

Copy file name to clipboardExpand all lines: coderd/database/db2sdk/db2sdk.go
+3Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1475,6 +1475,9 @@ func OrganizationGroupAISpend(row database.GetOrganizationGroupsAISpendRow) code
14751475
if row.SpendLimitMicros.Valid {
14761476
group.SpendLimitMicros = &row.SpendLimitMicros.Int64
14771477
}
1478+
if row.TotalSpendLimitMicros.Valid {
1479+
group.TotalSpendLimitMicros = &row.TotalSpendLimitMicros.Int64
1480+
}
14781481
return group
14791482
}
14801483

Collapse file

‎coderd/database/querier.go‎

Copy file name to clipboardExpand all lines: coderd/database/querier.go
+6-2Lines changed: 6 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.