Skip to content

qor/slug

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

51 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Slug

Slug provides an easy way to create a pretty URL, a.k.a. Search Engine Friendly (SEF) URL, for your model.

GoDoc

Usage

Use slug.Slug as your field type with the same name as the benefactor field, from which the slug's value should be dynamically derived, and prepended with WithSlug, for example:

import (
  "github.com/jinzhu/gorm"
  "github.com/qor/slug"
)

type User struct {
  gorm.Model
  Name            string
  NameWithSlug    slug.Slug
}

Then in the QOR Admin interface, you will see a slug field.

License

Released under the MIT License.