-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathchat.go
54 lines (49 loc) · 1.43 KB
/
chat.go
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
package chat
import "github.com/code-payments/code-server/pkg/code/localization"
const (
CashTransactionsName = "Cash Transactions" // Renamed to Cash Payments on client
CodeTeamName = "Code Team"
KinPurchasesName = "Kin Purchases"
PaymentsName = "Payments" // Renamed to Web Payments on client
// Test chats used for unit/integration testing only
TestCantMuteName = "TestCantMute"
TestCantUnsubscribeName = "TestCantUnsubscribe"
)
var (
InternalChatProperties = map[string]struct {
TitleLocalizationKey string
CanMute bool
CanUnsubscribe bool
}{
CashTransactionsName: {
TitleLocalizationKey: localization.ChatTitleCashTransactions,
CanMute: true,
CanUnsubscribe: false,
},
CodeTeamName: {
TitleLocalizationKey: localization.ChatTitleCodeTeam,
CanMute: true,
CanUnsubscribe: false,
},
KinPurchasesName: {
TitleLocalizationKey: localization.ChatTitleKinPurchases,
CanMute: true,
CanUnsubscribe: false,
},
PaymentsName: {
TitleLocalizationKey: localization.ChatTitlePayments,
CanMute: true,
CanUnsubscribe: false,
},
TestCantMuteName: {
TitleLocalizationKey: "n/a",
CanMute: false,
CanUnsubscribe: true,
},
TestCantUnsubscribeName: {
TitleLocalizationKey: "n/a",
CanMute: true,
CanUnsubscribe: false,
},
}
)