Page MenuHomeMusing Studio

funcs.go
No OneTemporary

funcs.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
}

File Metadata

Mime Type
text/plain
Expires
Thu, Oct 30, 2:38 AM (11 h, 19 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3463165

Event Timeline