aboutsummaryrefslogtreecommitdiffstats
path: root/services/auth/source/db
diff options
context:
space:
mode:
Diffstat (limited to 'services/auth/source/db')
-rw-r--r--services/auth/source/db/source.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/services/auth/source/db/source.go b/services/auth/source/db/source.go
index bb2270cbd6..90baa61f5b 100644
--- a/services/auth/source/db/source.go
+++ b/services/auth/source/db/source.go
@@ -11,7 +11,9 @@ import (
)
// Source is a password authentication service
-type Source struct{}
+type Source struct {
+ auth.ConfigBase `json:"-"`
+}
// FromDB fills up an OAuth2Config from serialized format.
func (source *Source) FromDB(bs []byte) error {