[fix] Lower case slugs

This commit is contained in:
brunosimon
2016-10-24 19:39:13 +02:00
parent 6757bb634b
commit 7b90c2ae86
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -33,7 +33,7 @@ class Project
set_name( _name )
{
this.name = _name
this.slug = slug( this.name )
this.slug = slug( this.name, { lower: true } )
}
set_socket( socket )