| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
| |
back](https://github.com/wekan/wekan/pulls/2406).
Thanks to bentiss.
Closes #2403,
closes #2328
|
|\
| |
| | |
card count placement and export API functionality back
|
| |
| |
| |
| |
| |
| | |
The files are actually modules, not plain scripts, and thus we are allowed
to use `export`. Without `parseModule`, the script would silently fail
when parsing `export.js` and the export function will not be present.
|
| |
| |
| |
| |
| |
| |
| | |
Commit 477d71e0b90d1 was based on an older version of export.js, which
means it reverted a few changes that were made previously.
Fixes #2328
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
When introducing markdown in the title (b795115042c2eb6bccb), the card
count got pushed outside of the List Header.
Add its own style (by manually merge small and quiet), and restore its
original placement.
Fixes #2403
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
of big boards with too many archived items](https://github.com/wekan/wekan/pull/2402).
If some Wekan users see errors with this, please empty your browser cache.
Thanks to nerminator.
Closes #2338
|
|\ \
| |/
|/| |
Fixed #2338 -> Slow opening of big boards with too many archived items
|
|/ |
|
| |
|
|\
| |
| | |
Added BIDI support to "Add Card" #884
|
|/ |
|
| |
|
| |
|
| |
|
|\
| |
| | |
Add partentId support on card web API
|
| | |
|
|/ |
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
All Boards view Board names and Board descriptions](https://github.com/wekan/wekan/issues/2334).
Thanks to shaygover and xet7 !
Related #2334
|
| |
|
| |
|
|
|
|
| |
Thanks to xet7 !
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
password, instead of an administrator key. Default: false (use administrator key).
With new setting: LDAP_USER_AUTHENTICATION=true
Added to Snap, Docker and Source.
Thanks to xet7 !
Related https://github.com/wekan/wekan/pull/2399
|
|\ |
|
|/|
| |
| |
| | |
thiagofernando-devel
|
| |
| |
| | |
additional option to login in ldap server with user account
|
| | |
|
| |\
| | |
| | | |
ldap changes
|
| | | |
|
| | | |
|
| | | |
|
| |/
|/|
| |
| |
| |
| | |
Thanks to xet7 !
Related #2389
|
| | |
|
| | |
|
| |
| |
| |
| | |
Thanks to xet7 !
|
|\ \
| | |
| | | |
Delete user feature
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | | |
Thanks to justinr1234 !
|
|\ \ \
| | | |
| | | | |
Fixed RTL issue #884
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
fix(oidc): can not log in
|
| |/ /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Trying to configure wekan authenticating against LemonLDAP-NG, I used to read about errors like the following:
```
XXX: getUserInfo response: { sub: 'demoone' }
XXX: userinfo: { sub: 'demoone' }
{"line":"431","file":"oauth.js","message":"Error in OAuth Server: id is not defined","time":{"$date":1556286530412},"level":"warn"}
Exception while invoking method 'login' { stack: 'ReferenceError: id is not defined\n at Object.handleOauthRequest (packages/wekan-oidc.js:39:68)\n at OAuth._requestHandlers.(anonymous function) (packages/oauth2.js:27:31)\n at middleware (packages/oauth.js:203:5)\n at packages/oauth.js:176:5',
source: 'method' }
```
Looking at the sources, that error message seems to be right: we have several references to `id`, `uid`, `displayName` or `email`, which are not defined. Probably a typo, assuming we meant these to be strings.
Applying that patch, I confirm I can finally log in:
```
XXX: getUserInfo response: { sub: 'demoone' }
XXX: userinfo: { sub: 'demoone' }
XXX: serviceData: { id: undefined,
username: undefined,
fullname: undefined,
accessToken: 'e57dc4e9e81cc98c279db3ed08b1c72f',
expiresAt: 1556298699213,
email: undefined }
XXX: profile: { name: undefined, email: undefined }
```
All the credit goes to @pcurie .
|