helpers: Golint fixes

This commit is contained in:
Bjørn Erik Pedersen
2016-11-05 17:05:33 +01:00
parent 72156e403c
commit d4830fc4fd
2 changed files with 5 additions and 0 deletions

View File

@@ -35,6 +35,7 @@ type PathSpec struct {
multilingual bool
}
// NewPathSpecFromConfig creats a new PathSpec from the given ConfigProvider.
func NewPathSpecFromConfig(config ConfigProvider) *PathSpec {
return &PathSpec{
disablePathToLower: config.GetBool("disablePathToLower"),
@@ -49,6 +50,7 @@ func NewPathSpecFromConfig(config ConfigProvider) *PathSpec {
}
}
// PaginatePath returns the configured root path used for paginator pages.
func (p *PathSpec) PaginatePath() string {
return p.paginatePath
}