8000 feat: add auditing for groups by sreya · Pull Request #4527 · coder/coder · GitHub
[go: up one dir, main page]

Skip to content

feat: add auditing for groups #4527

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 15 commits into from
Oct 19, 2022
Prev Previous commit
Next Next commit
fix tests
  • Loading branch information
sreya committed Oct 19, 2022
commit 05861d5b63ace13e05d6add6d816d16bfc4d50e5
3 changes: 3 additions & 0 deletions enterprise/coderd/coderd_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,9 @@ func TestAuditLogging(t *testing.T) {
t.Parallel()
client, _, api := coderdenttest.NewWithAPI(t, &coderdenttest.Options{
AuditLogging: true,
Options: &coderdtest.Options{
Auditor: audit.NewAuditor(audit.DefaultFilter),
},
})
coderdtest.CreateFirstUser(t, client)
coderdenttest.AddLicense(t, client, coderdenttest.LicenseOptions{
Expand Down
0