Skip to content

Commit 338dbfd

Browse files
committed
make gen
1 parent 63dc6fc commit 338dbfd

File tree

11 files changed

+123
-0
lines changed

11 files changed

+123
-0
lines changed

coderd/apidoc/docs.go

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

coderd/apidoc/swagger.json

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

coderd/database/dbauthz/dbauthz.go

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1850,6 +1850,10 @@ func (q *querier) GetNotificationsSettings(ctx context.Context) (string, error)
18501850
return q.db.GetNotificationsSettings(ctx)
18511851
}
18521852

1853+
func (q *querier) GetOAuth2GithubDefaultEligible(ctx context.Context) (bool, error) {
1854+
panic("not implemented")
1855+
}
1856+
18531857
func (q *querier) GetOAuth2ProviderAppByID(ctx context.Context, id uuid.UUID) (database.OAuth2ProviderApp, error) {
18541858
if err := q.authorizeContext(ctx, policy.ActionRead, rbac.ResourceOauth2App); err != nil {
18551859
return database.OAuth2ProviderApp{}, err
@@ -4430,6 +4434,10 @@ func (q *querier) UpsertNotificationsSettings(ctx context.Context, value string)
44304434
return q.db.UpsertNotificationsSettings(ctx, value)
44314435
}
44324436

4437+
func (q *querier) UpsertOAuth2GithubDefaultEligible(ctx context.Context, eligible bool) error {
4438+
panic("not implemented")
4439+
}
4440+
44334441
func (q *querier) UpsertOAuthSigningKey(ctx context.Context, value string) error {
44344442
if err := q.authorizeContext(ctx, policy.ActionUpdate, rbac.ResourceSystem); err != nil {
44354443
return err

coderd/database/dbmem/dbmem.go

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3528,6 +3528,10 @@ func (q *FakeQuerier) GetNotificationsSettings(_ context.Context) (string, error
35283528
return string(q.notificationsSettings), nil
35293529
}
35303530

3531+
func (q *FakeQuerier) GetOAuth2GithubDefaultEligible(ctx context.Context) (bool, error) {
3532+
panic("not implemented")
3533+
}
3534+
35313535
func (q *FakeQuerier) GetOAuth2ProviderAppByID(_ context.Context, id uuid.UUID) (database.OAuth2ProviderApp, error) {
35323536
q.mutex.Lock()
35333537
defer q.mutex.Unlock()
@@ -11147,6 +11151,10 @@ func (q *FakeQuerier) UpsertNotificationsSettings(_ context.Context, data string
1114711151
return nil
1114811152
}
1114911153

11154+
func (q *FakeQuerier) UpsertOAuth2GithubDefaultEligible(ctx context.Context, eligible bool) error {
11155+
panic("not implemented")
11156+
}
11157+
1115011158
func (q *FakeQuerier) UpsertOAuthSigningKey(_ context.Context, value string) error {
1115111159
q.mutex.Lock()
1115211160
defer q.mutex.Unlock()

coderd/database/dbmetrics/querymetrics.go

Lines changed: 14 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

coderd/database/dbmock/dbmock.go

Lines changed: 29 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

coderd/database/querier.go

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

coderd/database/queries.sql.go

Lines changed: 39 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/reference/api/general.md

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/reference/api/schemas.md

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/reference/cli/server.md

Lines changed: 11 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)