mirror of
https://github.com/documize/community.git
synced 2025-07-19 13:19:43 +02:00
Per space label, icon, description
Labels introduce visual grouping and filtering of spaces.
This commit is contained in:
parent
fe8068965c
commit
a211ba051a
106 changed files with 3280 additions and 1008 deletions
|
@ -25,6 +25,7 @@ import (
|
|||
category "github.com/documize/community/domain/category"
|
||||
document "github.com/documize/community/domain/document"
|
||||
group "github.com/documize/community/domain/group"
|
||||
label "github.com/documize/community/domain/label"
|
||||
link "github.com/documize/community/domain/link"
|
||||
meta "github.com/documize/community/domain/meta"
|
||||
org "github.com/documize/community/domain/organization"
|
||||
|
@ -147,6 +148,11 @@ func SetPostgreSQLProvider(r *env.Runtime, s *store.Store) {
|
|||
userStore := user.Store{}
|
||||
userStore.Runtime = r
|
||||
s.User = userStore
|
||||
|
||||
// Space Label
|
||||
labelStore := label.Store{}
|
||||
labelStore.Runtime = r
|
||||
s.Label = labelStore
|
||||
}
|
||||
|
||||
// Type returns name of provider
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue