| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
|
|
|
| |
Same can be done with Caddy.
Thanks to xet7 !
Closes #1776,
closes #386
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
don't get broken when root-url changes to different sub-url.
This does not change avatar urls in database, instead this
fixes url on the fly after loading avatar url from database.
Thanks to xet7 !
Closes #1776,
closes #386
|
| |
|
|
|
|
|
|
|
|
| |
so that initials are again visible.
Thanks to pravdomil and xet7 !
Reverts https://github.com/wekan/wekan/pull/1714
|
| |
|
| |
|
| |
|
| |
|
| |
|
|\
| |
| |
| | |
https://github.com/thuanpq/wekan into thuanpq-fix-bug-on-missing-admin-panel-menuoption
|
| | |
|
| | |
|
| | |
|
|/
|
|
|
| |
will stop when template is unused. It's very important for efficiency
espacially with large number of users. Thanks to mfshiu !
|
| |
|
| |
|
|
|
|
| |
aimed to support admin update other user profile
|
|
|
|
| |
Set allow email change in admin panel
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
| |
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
|
| |
|
| |
|
|\
| |
| | |
New change settings option and possibility to hide system messagaes
|
| | |
|
| | |
|
| | |
|
|/ |
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
This code was duplicate with the name we use to `register` the
component. A update of blaze-component removed the need to duplicate
this declaration.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The layout issue was related to the lack of autoprexing for CSS
properties. c69f993 did improve the reload time significantly but for
that I had to replace `mquandalle:stylus` by the core `stylus`
package. Unfortunatly it is currently difficult to run an autoprefixer
with the core CSS compilers (as reported in
https://github.com/meteor/meteor/issues/5219).
So instead we rely on `nib` which transparently define some mixins for
autoprefixing, the only restrictions being that we have to manually
`@import 'nib'` on top of stylus files.
Fixes #461
|
|
|
|
|
|
|
|
|
|
| |
The bug comes for 9154b06 which this commit partially reverts. The
synchronization between the user document profile and the Sandstorm
HTTP headers is still not perfect. Having a clean model may requires
the `accounts-sandstorm` to expose a hook to modify the user document
just after the `services.sandstorm` credentials are updated.
Fixes #460
|
|
|
|
| |
Fixes #448
|
| |
|
|\
| |
| | |
add: set user preferred lang and allow select lang for user form
|
| | |
|
|/
|
|
| |
to quit
|
|
|
|
|
| |
Yes Wekan need some tests. Yes I need to stop refactoring my code
when I’m halp-sleeping in my bed at 4am.
|
|
|
|
|
|
| |
This version includes a more complete selection of ES2015 polyfills
that I started used across the code base, for instance by replacing
`$.trim(str)` by `str.trim()`.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Since 07cc454 (ie the switch to Meteor 1.2) we includes the `es5-shim`
polyfill to support methods like `Array.prototype.forEach` in a
consistent way across all supported browsers (IE8+).
MDG recently released a blog post recommending the use of these native
methods instead of underscore [0]. We know follow this recommendation.
This commit also favor some ES6 features (argument defaults,
destructing assignment) in places where we didn’t use them.
[0]: http://info.meteor.com/blog/es2015-get-started
|
|
|
|
|
| |
We now delegates more user attributes sync (avatar and permissions) to
this package instead of doing it ourselves.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This commit uses a new package that I need to document. It tries to
solve the long-standing debate in the Meteor community about
allow/deny rules versus methods (RPC).
This approach gives us both the centralized security rules of
allow/deny and the white-list of allowed mutations similarly to Meteor
methods. The idea to have static mutation descriptions is also
inspired by Facebook's Relay/GraphQL.
This will allow the development of a REST API using the high-level
methods instead of the MongoDB queries to do the mapping between the
HTTP requests and our collections.
|
|
|
|
|
|
|
|
|
|
| |
This commit fixes the download link in the activity feed on the
sidebar and the mention link on card description and comments
(replaced by a popup).
`eslint .` now passes without any error or warning.
Fixes #286
|
|
|
|
| |
Fixes #265
|