summaryrefslogtreecommitdiffstats
path: root/model/command.go
diff options
context:
space:
mode:
authorGeorge Goldberg <george@gberg.me>2018-02-06 17:25:53 +0000
committerGeorge Goldberg <george@gberg.me>2018-02-06 17:25:53 +0000
commit7941c30117efe1b957ac0458c2f0479e3824196d (patch)
treedf791632a9dc790a6f73dec53aae3ba919ebda63 /model/command.go
parente1cd64613591cf5a990442a69ebf188258bd0cb5 (diff)
parent034dbc07e3068c482e654b6a1a8fcbe4b01c44f3 (diff)
downloadchat-7941c30117efe1b957ac0458c2f0479e3824196d.tar.gz
chat-7941c30117efe1b957ac0458c2f0479e3824196d.tar.bz2
chat-7941c30117efe1b957ac0458c2f0479e3824196d.zip
Merge branch 'master' into advanced-permissions-phase-1
Diffstat (limited to 'model/command.go')
-rw-r--r--model/command.go36
1 files changed, 9 insertions, 27 deletions
diff --git a/model/command.go b/model/command.go
index 69da41c1d..b23e5020f 100644
--- a/model/command.go
+++ b/model/command.go
@@ -38,43 +38,25 @@ type Command struct {
}
func (o *Command) ToJson() string {
- b, err := json.Marshal(o)
- if err != nil {
- return ""
- } else {
- return string(b)
- }
+ b, _ := json.Marshal(o)
+ return string(b)
}
func CommandFromJson(data io.Reader) *Command {
- decoder := json.NewDecoder(data)
- var o Command
- err := decoder.Decode(&o)
- if err == nil {
- return &o
- } else {
- return nil
- }
+ var o *Command
+ json.NewDecoder(data).Decode(&o)
+ return o
}
func CommandListToJson(l []*Command) string {
- b, err := json.Marshal(l)
- if err != nil {
- return ""
- } else {
- return string(b)
- }
+ b, _ := json.Marshal(l)
+ return string(b)
}
func CommandListFromJson(data io.Reader) []*Command {
- decoder := json.NewDecoder(data)
var o []*Command
- err := decoder.Decode(&o)
- if err == nil {
- return o
- } else {
- return nil
- }
+ json.NewDecoder(data).Decode(&o)
+ return o
}
func (o *Command) IsValid() *AppError {