summaryrefslogtreecommitdiffstats
path: root/client/components/main/layouts.js
Commit message (Collapse)AuthorAgeFilesLines
* Prettier & eslint project style updateJustin Reynolds2019-06-281-32/+40
|
* - Fix translation name in Wekan menu: oc to Occitan.Lauri Ojansivu2019-05-111-0/+2
| | | | Thanks to xet7 !
* fix lintsguillaume2019-04-241-3/+3
|
* Loading authentication pageguillaume2019-04-241-8/+19
|
* Fix LDAP login.Lauri Ojansivu2019-03-151-14/+5
| | | | | | | Thanks to xet7 ! Closes wekan/wekan-ldap#43, closes wekan/wekan-snap#85
* Try to fix [LDAP Login: "Login forbidden", ReferenceError: req is not ↵Lauri Ojansivu2019-03-141-5/+5
| | | | | | | | | | defined](https://github.com/wekan/wekan-ldap/issues/44). Please test. Thanks to xet7 ! Closes wekan/wekan-ldap#44
* Fix lint errors.Lauri Ojansivu2019-03-081-12/+7
| | | | | | Thanks to xet7 ! Related #2019
* [HTTP header automatic login. Not tested ↵Lauri Ojansivu2019-03-081-5/+19
| | | | | | | | yet.](https://github.com/wekan/wekan/issues/2019). Thanks to xet7 ! Related #2019
* Fix lintsguillaume2019-02-071-6/+11
|
* - Fix lint errors.Lauri Ojansivu2019-02-011-4/+4
| | | | Thanks to xet7 !
* Improve authenticationguillaume2019-02-011-61/+68
|
* - Revert "Improve authentication" and "Default Authentication Method"Lauri Ojansivu2018-12-241-60/+49
| | | | | | | | to make login work again. - Fixes to docker-compose.yml so that Wekan Meteor 1.6.x version would work. Most likely Meteor 1.8.x version is still broken. Thanks to xet7 !
* Fix lint errors.Lauri Ojansivu2018-12-211-9/+13
|
* Improves UI for ldap error messagesguillaume2018-12-191-13/+28
|
* Removes the dropdown for the authentication methodguillaume2018-12-191-49/+41
|
* - Trying to get custom HTML working as described atLauri Ojansivu2018-12-161-0/+9
| | | | | | | https://guide.meteor.com/v1.3/blaze.html#rendering-html Still does not work yet. Thanks to xet7 !
* This release fixes the following bugs:Lauri Ojansivu2018-12-051-49/+47
| | | | | | | | | | - Partially #2045 revert [Improve authentication](https://github.com/wekan/wekan/issues/2016), adding back password/LDAP dropdown, because login did now work. NOTE: This was added in v1.71, reverted at v1.73 because login did not work, added back at v1.79, and then reverted partially at v1.82 because login did not work. Related LDAP logout timer does not work yet. Thanks to xet7 !
* Fix lint errors.Lauri Ojansivu2018-12-031-1/+1
|
* finish prepare for testguillaume2018-11-231-3/+8
|
* revert changes for patch authenticationguillaume2018-11-221-46/+43
|
* Admin Panel / Layout: Hide Logo: Yes / No. This does hide Wekan logo on ↵Lauri Ojansivu2018-11-201-0/+11
| | | | Login page and Board page. Thanks to xet7.
* - Revert Improve authentication to [fix Login ↵Lauri Ojansivu2018-11-171-45/+42
| | | | | | | | failure](https://github.com/wekan/wekan/issues/2004). Thanks to xet7 ! Closes #2004
* Fix lint errors.Lauri Ojansivu2018-11-161-3/+3
|
* patch authenticationguillaume2018-11-091-29/+46
|
* Logout with timerguillaume2018-11-061-0/+2
|
* patch authenticationguillaume2018-11-061-43/+27
|
* Fix lint errors.Lauri Ojansivu2018-10-091-3/+3
|
* add ldap support | simplify authenticationsguillaume2018-10-091-16/+32
|
* - Add LDAP. In progress.Lauri Ojansivu2018-10-031-1/+40
| | | | | | Thanks to maximest-pierre, Akuket and xet. Related #119
* Fix stupid error 💥🗯💣🕳💢☠ppoulard2018-07-031-1/+1
|
* Fix QAppoulard2018-07-031-2/+2
|
* Adding SSO CAS to Wekanppoulard2018-07-031-0/+17
|
* Fix lint errors related to language namesGhassen Rjab2018-02-261-4/+8
|
* Fix Igbo language at menu.Lauri Ojansivu2018-01-281-1/+1
|
* Fix: Frequent Subscriptions problem that make Excessive CPU usage.Lauri Ojansivu2017-11-291-4/+0
| | | | Thanks to mfshiu ! Closes #1096, Closes wekan/wekan-mongodb#2
* Add Breton labelGhassen Rjab2017-06-191-1/+1
|
* Sort available languages by their translated namesGhassen Rjab2017-06-181-3/+11
|
* Admin panel:lkisme2017-02-241-0/+2
| | | | | | | Only invited user can register in strict mode, Set mail server in admin panel, Switch strict mode in admin panel, Invite people to system in admin panel
* add: use user preferred lang for user form, and allow selectingfloatinghotpot2015-12-071-0/+33
|
* Enforce a consistent ES6 coding styleMaxime Quandalle2015-09-031-8/+8
| | | | | | | | | Replace the old (and broken) jshint + jscsrc by eslint and configure it to support some of the ES6 features. The command `eslint` currently has one error which is a bug that was discovered by its static analysis and should be fixed (usage of a dead object).
* Implement a modal systemMaxime Quandalle2015-08-261-3/+11
| | | | | | | | | | | | | | I decided to create my own and not to use a community package, because 1. it's straightforward 2. it's better integrated with our others libs such as EscapeActions 3. monitoring third-party packages evolutions (eg, CSS changes) is a lot of work. This is basically the same rationale than for our other generic UI components such as the Popup/Popover. This commit also slightly modify the general layout to remove unnecessary wrapper DOM nodes.
* Start the migration from iron-router to flow-routerMaxime Quandalle2015-08-231-0/+5
Motivations: * Iron-Router foces us to use Tracker.nonreactive black magic in order to avoid un-necessary re-renders; * There is a community consensus (supported by some MDG members) that the flow-router API is easier to reason about; * The useraccounts now supports flow router (that was a blocking element when I considered the switch ~3months ago) On the server we use the Picker router, as encouraged by the Kadira team (which develop both Flow and Picker routers). In the current state of things there are some bugs related to the missing Loading architecure. Previously onRendered callback where always called when the data the component needed was available, now we have to handle this ourselves, which we will in a following commit.