mirror of
https://github.com/writefreely/writefreely
synced 2024-11-14 05:07:07 +00:00
8ab29d89da
Plus update copy / options / templates in the config process.
17 lines
341 B
Go
17 lines
341 B
Go
package config
|
|
|
|
import (
|
|
"strings"
|
|
)
|
|
|
|
// FriendlyHost returns the app's Host sans any schema
|
|
func (ac AppCfg) FriendlyHost() string {
|
|
return ac.Host[strings.Index(ac.Host, "://")+len("://"):]
|
|
}
|
|
|
|
func (ac AppCfg) CanCreateBlogs(currentlyUsed uint64) bool {
|
|
if ac.MaxBlogs <= 0 {
|
|
return true
|
|
}
|
|
return int(currentlyUsed) < ac.MaxBlogs
|
|
}
|