Этот коммит содержится в:
Christopher Speller
2017-03-20 08:58:15 -04:00
коммит произвёл George Goldberg
родитель 3d14573b8c
Коммит f9be4d5acb
4 изменённых файлов: 3 добавлений и 1127 удалений

Просмотреть файл

@@ -120,8 +120,6 @@ func createChannelCmdF(cmd *cobra.Command, args []string) error {
return errors.New("Unable to find team: " + teamArg)
}
c := getMockContext()
channel := &model.Channel{
TeamId: team.Id,
Name: name,
@@ -129,7 +127,7 @@ func createChannelCmdF(cmd *cobra.Command, args []string) error {
Header: header,
Purpose: purpose,
Type: channelType,
CreatorId: c.Session.UserId,
CreatorId: "",
}
if _, err := app.CreateChannel(channel, false); err != nil {