(function(){ angular .module("_webApi_") .constant("cat.userManage", { "DATA": [ { Url: '/admin-panel/api/v1/users/{id}', CustomOptions: false, Method: 'get', InvokeName: 'getUserProfileById' }, { Url: '/admin-panel/api/v1/users', CustomOptions: false, Method: 'post', InvokeName: 'createUserProfile' }, { Url: '/admin-panel/api/v1/users/{id}', CustomOptions: false, Method: 'put', InvokeName: 'updateUserProfileById' }, { Url: '/admin-panel/api/v1/users/{id}/password', CustomOptions: false, Method: 'put', InvokeName: 'userProfileChangePassword' }, { Url: '/admin-panel/api/v1/users/{id}/block', CustomOptions: false, Method: 'put', InvokeName: 'blockUserProfileById' }, { Url: '/admin-panel/api/v1/users/blocked/{id}/unblock', CustomOptions: false, Method: 'put', InvokeName: 'unblockUserProfileById' }, { Url: '/admin-panel/api/v1/users/active', CustomOptions: false, Method: 'get', InvokeName: 'getUserProfileActive' }, { Url: '/admin-panel/api/v1/users/blocked', CustomOptions: false, Method: 'get', InvokeName: 'getUserProfileBlocked' }, { Url: '/api/v1/countries', CustomOptions: false, Method: 'get', InvokeName: 'getCountries' }, { Url: '/api/v1/secret-questions', CustomOptions: false, Method: 'get', InvokeName: 'getSecurityQuestions' }, { Url: '/api/v1/languages', CustomOptions: false, Method: 'get', InvokeName: 'getLanguages' }, { Url: '/admin-panel/api/v1/users/{id}/image', CustomOptions: true, Method: 'post', InvokeName: 'uploadUserImage' } ] }); })();