Page MenuHomeMusing Studio

funcs.go
No OneTemporary

funcs.go

/*
* Copyright © 2018 A Bunch Tell LLC.
*
* This file is part of WriteFreely.
*
* WriteFreely is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License, included
* in the LICENSE file in this source code package.
*/
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, Jun 5, 4:00 AM (2 h, 14 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3257047

Event Timeline