mirror of
https://github.com/documize/community.git
synced 2025-08-02 12:05:23 +02:00
Install helps docs as part of onboarding process
Our own docs are installed as sample data! Refactored search reindexing code.
This commit is contained in:
parent
411f64c359
commit
3621e2fb79
26 changed files with 1957 additions and 1280 deletions
46
domain/onboard/store.go
Normal file
46
domain/onboard/store.go
Normal file
|
@ -0,0 +1,46 @@
|
|||
// 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 onboard handles the setup of sample data for a new Documize instance.
|
||||
package onboard
|
||||
|
||||
import (
|
||||
"github.com/documize/community/domain/store"
|
||||
)
|
||||
|
||||
// Store provides data access to version information.
|
||||
type Store struct {
|
||||
store.Context
|
||||
}
|
||||
|
||||
// ContentCounts returns the number of spaces and documents.
|
||||
func (s Store) ContentCounts() (spaces, docs int) {
|
||||
// By default we assume there is content in case of error condition.
|
||||
spaces = 10
|
||||
docs = 10
|
||||
|
||||
var m int
|
||||
var err error
|
||||
|
||||
row := s.Runtime.Db.QueryRow("SELECT COUNT(*) FROM dmz_space")
|
||||
err = row.Scan(&m)
|
||||
if err == nil {
|
||||
spaces = m
|
||||
}
|
||||
|
||||
row = s.Runtime.Db.QueryRow("SELECT COUNT(*) FROM dmz_doc")
|
||||
err = row.Scan(&m)
|
||||
if err == nil {
|
||||
docs = m
|
||||
}
|
||||
|
||||
return
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue