Files
opencloud/services/idm/idm.go
Ralf Haferkamp 63ee06ce69 fix(idm): add oCExternalIdentity to demo users
To make sure they get and 'identities' property in the graph responses.
2024-08-15 13:38:04 +02:00

16 lines
249 B
Go

package idm
import (
_ "embed"
)
// BaseLDIF is a template for base LDAP entries
//
//go:embed ldif/base.ldif.tmpl
var BaseLDIF string
// DemoUsersLDIF is a template for demo users
//
//go:embed ldif/demousers.ldif.tmpl
var DemoUsersLDIF string