Add Team Description to the Team Settings (#4652)
* draft * Add Team Description to the Team Settings * add tooltips for team description * made changes per PM review * add message when there is no description set in the team * squash
Этот коммит содержится в:
коммит произвёл
Joram Wilander
родитель
8c18da21f3
Коммит
c51afba71a
@@ -237,6 +237,24 @@ describe('Client.Team', function() {
|
||||
});
|
||||
});
|
||||
|
||||
it('updateTeamDescription', function(done) {
|
||||
TestHelper.initBasic(() => {
|
||||
var team = TestHelper.basicTeam();
|
||||
team.description = 'test_updated';
|
||||
|
||||
TestHelper.basicClient().updateTeam(
|
||||
team,
|
||||
function(data) {
|
||||
assert.equal(data.description, 'test_updated');
|
||||
done();
|
||||
},
|
||||
function(err) {
|
||||
done(new Error(err.message));
|
||||
}
|
||||
);
|
||||
});
|
||||
});
|
||||
|
||||
it('addUserToTeam', function(done) {
|
||||
TestHelper.initBasic(() => {
|
||||
TestHelper.basicClient().createUser(
|
||||
|
||||
Ссылка в новой задаче
Block a user