Movatterモバイル変換


[0]ホーム

URL:


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

Sign up
Appearance settings

Commitc0671f5

Browse files
committed
make gen
1 parentf203598 commitc0671f5

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 aboutcustomizing 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 aboutcustomizing 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
returnq.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
iferr:=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
returnq.db.UpsertNotificationsSettings(ctx,value)
44314435
}
44324436

4437+
func (q*querier)UpsertOAuth2GithubDefaultEligible(ctx context.Context,eligiblebool)error {
4438+
panic("not implemented")
4439+
}
4440+
44334441
func (q*querier)UpsertOAuthSigningKey(ctx context.Context,valuestring)error {
44344442
iferr:=q.authorizeContext(ctx,policy.ActionUpdate,rbac.ResourceSystem);err!=nil {
44354443
returnerr

‎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
returnstring(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
deferq.mutex.Unlock()
@@ -11147,6 +11151,10 @@ func (q *FakeQuerier) UpsertNotificationsSettings(_ context.Context, data string
1114711151
returnnil
1114811152
}
1114911153

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

‎coderd/database/dbmetrics/querymetrics.go‎

Lines changed: 14 additions & 0 deletions
Some generated files are not rendered by default. Learn more aboutcustomizing 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 aboutcustomizing 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 aboutcustomizing 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 aboutcustomizing 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 aboutcustomizing 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 aboutcustomizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp