summaryrefslogtreecommitdiffstats
path: root/model/emoji_search.go
blob: 3a768a57456aa81b3b73e6b91a444ecdf9a1f428 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Copyright (c) 2018-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.

package model

import (
	"encoding/json"
	"io"
)

type EmojiSearch struct {
	Term       string `json:"term"`
	PrefixOnly bool   `json:"prefix_only"`
}

func (es *EmojiSearch) ToJson() string {
	b, _ := json.Marshal(es)
	return string(b)
}

func EmojiSearchFromJson(data io.Reader) *EmojiSearch {
	var es *EmojiSearch
	json.NewDecoder(data).Decode(&es)
	return es
}