Added the ability to create a team with SSO services and added the ability to turn off email sign up.
Этот коммит содержится в:
@@ -70,6 +70,21 @@ module.exports.createTeamFromSignup = function(teamSignup, success, error) {
|
||||
});
|
||||
};
|
||||
|
||||
module.exports.createTeamWithSSO = function(team, service, success, error) {
|
||||
$.ajax({
|
||||
url: '/api/v1/teams/create_with_sso/' + service,
|
||||
dataType: 'json',
|
||||
contentType: 'application/json',
|
||||
type: 'POST',
|
||||
data: JSON.stringify(team),
|
||||
success: success,
|
||||
error: function onError(xhr, status, err) {
|
||||
var e = handleError('createTeamWithSSO', xhr, status, err);
|
||||
error(e);
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
module.exports.createUser = function(user, data, emailHash, success, error) {
|
||||
$.ajax({
|
||||
url: '/api/v1/users/create?d=' + encodeURIComponent(data) + '&h=' + encodeURIComponent(emailHash),
|
||||
|
||||
Ссылка в новой задаче
Block a user