1
0
mirror of synced 2024-11-22 04:56:06 +03:00

update channel name example

This commit is contained in:
Alex Lushpai 2018-09-10 12:06:57 +03:00
parent 0789e72134
commit 5643dd7db7
3 changed files with 6 additions and 6 deletions

View File

@ -28,7 +28,7 @@ func main() {
var client = v1.New("https://token.url", "cb8ccf05e38a47543ad8477d49bcba99be73bff503ea6")
ch := Channel{
Type: "telegram",
Name: "Telegram"
Name: "@my_shopping_bot"
Settings: ChannelSettings{
SpamAllowed: false,
Status: Status{

View File

@ -26,7 +26,7 @@ func New(url string, token string) *MgClient {
//
// request := ActivateRequest{
// Type: "telegram",
// Name: "Telegram",
// Name: "@my_shopping_bot",
// Settings: ChannelSettings{
// SpamAllowed: false,
// Status: Status{
@ -78,7 +78,7 @@ func (c *MgClient) ActivateTransportChannel(request Channel) (ActivateResponse,
// request := ActivateRequest{
// ID: 3053450384,
// Type: "telegram",
// Name: "Telegram",
// Name: "@my_shopping_bot",
// Settings: ChannelSettings{
// SpamAllowed: false,
// Status: Status{

View File

@ -24,7 +24,7 @@ func TestMgClient_ActivateTransportChannel(t *testing.T) {
ch := Channel{
ID: channelId,
Type: "telegram",
Name: "Telegram",
Name: "@my_shopping_bot",
Settings: ChannelSettings{
SpamAllowed: false,
Status: Status{
@ -53,7 +53,7 @@ func TestMgClient_ActivateNewTransportChannel(t *testing.T) {
c := client()
ch := Channel{
Type: "telegram",
Name: "Telegram",
Name: "@my_shopping_bot",
Settings: ChannelSettings{
SpamAllowed: false,
Status: Status{
@ -94,7 +94,7 @@ func TestMgClient_UpdateTransportChannel(t *testing.T) {
c := client()
ch := Channel{
ID: channelId,
Name: "Somename",
Name: "@my_shopping_bot_2",
Settings: ChannelSettings{
SpamAllowed: false,
Status: Status{