1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-22 06:39:43 +02:00

changed delete page to use DELETE verb and more Ember idiomatic

This commit is contained in:
Harvey Kandola 2016-10-13 11:31:09 -07:00
parent e9def2e71f
commit 0655fab204
6 changed files with 24 additions and 23 deletions

View file

@ -26,8 +26,8 @@ type ProdInfo struct {
// Product returns product edition details
func Product() (p ProdInfo) {
p.Major = "0"
p.Minor = "24"
p.Patch = "1"
p.Minor = "25"
p.Patch = "0"
p.Version = fmt.Sprintf("%s.%s.%s", p.Major, p.Minor, p.Patch)
p.Edition = "Community"
p.Title = fmt.Sprintf("%s Edition", p.Edition)