8000 feat: notify users on template deprecation by DanielleMaywood · Pull Request #15195 · coder/coder · GitHub
[go: up one dir, main page]

Skip to content

feat: notify users on template deprecation #15195

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 11 commits into from
Oct 24, 2024
Prev Previous commit
Next Next commit
fix: ci
  • Loading branch information
DanielleMaywood committed Oct 23, 2024
commit 22ec59dd1a07d03da5481cd040e78a569b1a0530
2 changes: 1 addition & 1 deletion coderd/database/dbmem/dbmem.go
Original file line number Diff line number Diff line change
Expand Up @@ -5669,7 +5669,7 @@ func (q *FakeQuerier) GetUsersByIDs(_ context.Context, ids []uuid.UUID) ([]datab
return users, nil
}

func (q *FakeQuerier) GetUsersWithAccessToTemplateByID(ctx context.Context, id uuid.UUID) ([]uuid.UUID, error) {
func (q *FakeQuerier) GetUsersWithAccessToTemplateByID(_ context.Context, id uuid.UUID) ([]uuid.UUID, error) {
q.mutex.RLock()
defer q.mutex.RUnlock()

Expand Down
0