Skip to content

Commit cd9c5e3

Browse files
committed
make gen
1 parent 3bf7185 commit cd9c5e3

File tree

13 files changed

+189
-19
lines changed

13 files changed

+189
-19
lines changed

coderd/apidoc/docs.go

Lines changed: 15 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

coderd/apidoc/swagger.json

Lines changed: 15 additions & 1 deletion
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
@@ -1845,6 +1845,10 @@ func (q *querier) GetNotificationsSettings(ctx context.Context) (string, error)
18451845
return q.db.GetNotificationsSettings(ctx)
18461846
}
18471847

1848+
func (q *querier) GetOAuth2GithubDefaultEligible(ctx context.Context) (bool, error) {
1849+
panic("not implemented")
1850+
}
1851+
18481852
func (q *querier) GetOAuth2ProviderAppByID(ctx context.Context, id uuid.UUID) (database.OAuth2ProviderApp, error) {
18491853
if err := q.authorizeContext(ctx, policy.ActionRead, rbac.ResourceOauth2App); err != nil {
18501854
return database.OAuth2ProviderApp{}, err
@@ -4435,6 +4439,10 @@ func (q *querier) UpsertNotificationsSettings(ctx context.Context, value string)
44354439
return q.db.UpsertNotificationsSettings(ctx, value)
44364440
}
44374441

4442+
func (q *querier) UpsertOAuth2GithubDefaultEligible(ctx context.Context, eligible bool) error {
4443+
panic("not implemented")
4444+
}
4445+
44384446
func (q *querier) UpsertOAuthSigningKey(ctx context.Context, value string) error {
44394447
if err := q.authorizeContext(ctx, policy.ActionUpdate, rbac.ResourceSystem); err != nil {
44404448
return err

coderd/database/dbmem/dbmem.go

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

3518+
func (q *FakeQuerier) GetOAuth2GithubDefaultEligible(ctx context.Context) (bool, error) {
3519+
panic("not implemented")
3520+
}
3521+
35183522
func (q *FakeQuerier) GetOAuth2ProviderAppByID(_ context.Context, id uuid.UUID) (database.OAuth2ProviderApp, error) {
35193523
q.mutex.Lock()
35203524
defer q.mutex.Unlock()
@@ -11154,6 +11158,10 @@ func (q *FakeQuerier) UpsertNotificationsSettings(_ context.Context, data string
1115411158
return nil
1115511159
}
1115611160

11161+
func (q *FakeQuerier) UpsertOAuth2GithubDefaultEligible(ctx context.Context, eligible bool) error {
11162+
panic("not implemented")
11163+
}
11164+
1115711165
func (q *FakeQuerier) UpsertOAuthSigningKey(_ context.Context, value string) error {
1115811166
q.mutex.Lock()
1115911167
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: 38 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/reference/api/users.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.

0 commit comments

Comments
 (0)