mirror of
https://github.com/writeas/writefreely
synced 2025-01-09 06:20:17 +01:00
18 lines
341 B
Go
18 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
|
||
|
}
|