Commit 40da17a4 authored by Mo Firouz's avatar Mo Firouz
Browse files

Fix typo in groups.

parent d8a11cb8
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -148,13 +148,13 @@ func groupCreate(tx *sql.Tx, g *GroupCreateParam) (*Group, error) {

	columns := make([]string, 0)
	params := make([]string, 0)

	updatedAt := nowMs()
	values := []interface{}{
		uuid.NewV4().Bytes(),
		g.Creator.Bytes(),
		g.Name,
		state,
		nowMs(), // updated_at
		updatedAt,
	}

	if g.Description != "" {