Skip to content

Commit

Permalink
Fix package.json description.
Browse files Browse the repository at this point in the history
Fix JSdoc.
  • Loading branch information
Martin Zaloudek committed Sep 15, 2015
1 parent 4e1c1b7 commit ecfd538
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 18 deletions.
9 changes: 1 addition & 8 deletions dist/http-auth-gui-interceptor.js
Original file line number Diff line number Diff line change
Expand Up @@ -241,14 +241,7 @@ angular.module('http-auth-gui-interceptor').provider('backendAuthService', funct
});

/**
* @typedef {object} LoggedUser
* @property {string} [cn] - Username (5-2-1)
* @property {string} [sn] - Last name
* @property {string} [dn] - Full AD/LDAP DN. For example: "CN=SOMEUSER1,OU=Users,OU=PH,OU=CZPR,DC=EU,DC=novartis,DC=net"
* @property {string} [givenName] - First name
* @property {string} [mail] - Primary email address
* @property {Array.<string>} [memberOf] - List of AD group which they belong.
* @property {Object.<string, boolean>} [staticFeatures] - List features, that depends on Logged user group
* @typedef {Object} LoggedUser
* @description
*
* Currently logged user with properties.
Expand Down
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
{
"name": "http-auth-gui-interceptor",
"version": "1.0.2",
"description": "Module is extension to "angular-http-auth", that automatically open Bootstrap Angular-UI modal dialog
when HTTP 401 occures in any HTTP result.",
"description": "Module is extension to 'angular-http-auth', that automatically open Bootstrap Angular-UI modal dialog when HTTP 401 occures in any HTTP result.",
"main": "gruntfile.js",
"readme": "readme.md",
"private": true,
Expand Down
9 changes: 1 addition & 8 deletions src/backend-auth-service.js
Original file line number Diff line number Diff line change
Expand Up @@ -206,14 +206,7 @@ angular.module('http-auth-gui-interceptor').provider('backendAuthService', funct
});

/**
* @typedef {object} LoggedUser
* @property {string} [cn] - Username (5-2-1)
* @property {string} [sn] - Last name
* @property {string} [dn] - Full AD/LDAP DN. For example: "CN=SOMEUSER1,OU=Users,OU=PH,OU=CZPR,DC=EU,DC=novartis,DC=net"
* @property {string} [givenName] - First name
* @property {string} [mail] - Primary email address
* @property {Array.<string>} [memberOf] - List of AD group which they belong.
* @property {Object.<string, boolean>} [staticFeatures] - List features, that depends on Logged user group
* @typedef {Object} LoggedUser
* @description
*
* Currently logged user with properties.
Expand Down

0 comments on commit ecfd538

Please sign in to comment.