2017-07-21 13:39:53 +01:00
|
|
|
// Copyright 2016 Documize Inc. <legal@documize.com>. All rights reserved.
|
|
|
|
//
|
|
|
|
// This software (Documize Community Edition) is licensed under
|
|
|
|
// GNU AGPL v3 http://www.gnu.org/licenses/agpl-3.0.en.html
|
|
|
|
//
|
|
|
|
// You can operate outside the AGPL restrictions by purchasing
|
|
|
|
// Documize Enterprise Edition and obtaining a commercial license
|
|
|
|
// by contacting <sales@documize.com>.
|
|
|
|
//
|
|
|
|
// https://documize.com
|
|
|
|
|
|
|
|
package section
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"github.com/documize/community/core/env"
|
|
|
|
"github.com/documize/community/domain/section/airtable"
|
|
|
|
"github.com/documize/community/domain/section/code"
|
2018-05-02 14:55:02 +01:00
|
|
|
"github.com/documize/community/domain/section/flowchart"
|
2017-07-21 13:39:53 +01:00
|
|
|
"github.com/documize/community/domain/section/gemini"
|
2018-08-06 19:39:31 +01:00
|
|
|
"github.com/documize/community/domain/section/jira"
|
2017-07-21 13:39:53 +01:00
|
|
|
"github.com/documize/community/domain/section/markdown"
|
|
|
|
"github.com/documize/community/domain/section/papertrail"
|
2018-02-07 13:44:18 +00:00
|
|
|
"github.com/documize/community/domain/section/plantuml"
|
2017-07-21 13:39:53 +01:00
|
|
|
"github.com/documize/community/domain/section/provider"
|
|
|
|
"github.com/documize/community/domain/section/table"
|
|
|
|
"github.com/documize/community/domain/section/trello"
|
|
|
|
"github.com/documize/community/domain/section/wysiwyg"
|
2018-09-27 15:14:48 +01:00
|
|
|
"github.com/documize/community/domain/store"
|
2017-07-21 13:39:53 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
// Register sections
|
2018-09-27 15:14:48 +01:00
|
|
|
func Register(rt *env.Runtime, s *store.Store) {
|
2017-08-02 15:26:31 +01:00
|
|
|
provider.Register("code", &code.Provider{Runtime: rt, Store: s})
|
2018-08-06 19:39:31 +01:00
|
|
|
provider.Register("jira", &jira.Provider{Runtime: rt, Store: s})
|
2017-08-02 15:26:31 +01:00
|
|
|
provider.Register("gemini", &gemini.Provider{Runtime: rt, Store: s})
|
2018-04-11 15:08:03 +01:00
|
|
|
// provider.Register("github", &github.Provider{Runtime: rt, Store: s})
|
2017-08-02 15:26:31 +01:00
|
|
|
provider.Register("markdown", &markdown.Provider{Runtime: rt, Store: s})
|
|
|
|
provider.Register("papertrail", &papertrail.Provider{Runtime: rt, Store: s})
|
|
|
|
provider.Register("table", &table.Provider{Runtime: rt, Store: s})
|
|
|
|
provider.Register("code", &code.Provider{Runtime: rt, Store: s})
|
|
|
|
provider.Register("trello", &trello.Provider{Runtime: rt, Store: s})
|
|
|
|
provider.Register("wysiwyg", &wysiwyg.Provider{Runtime: rt, Store: s})
|
|
|
|
provider.Register("airtable", &airtable.Provider{Runtime: rt, Store: s})
|
2018-02-07 13:44:18 +00:00
|
|
|
provider.Register("plantuml", &plantuml.Provider{Runtime: rt, Store: s})
|
2018-05-02 14:55:02 +01:00
|
|
|
provider.Register("flowchart", &flowchart.Provider{Runtime: rt, Store: s})
|
2017-07-21 13:39:53 +01:00
|
|
|
|
|
|
|
p := provider.List()
|
2018-09-14 13:00:58 +01:00
|
|
|
rt.Log.Info(fmt.Sprintf("Extensions: registered %d section types", len(p)))
|
2017-07-21 13:39:53 +01:00
|
|
|
}
|