| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
| |
This bug was introduced in 081b09207f2247d7e38fc28e0f0f9748eecbbcbe.
|
|
|
|
|
|
|
| |
The buttons of the normal view should have the same title attribute, than
the mini screen buttons.
I missed this in 0587158b6be930f53325baa54fccadc54d18c9a3.
|
|
|
|
|
|
|
|
|
| |
Even if a board is public and a user can view it, the user might want to
log in to be able to edit the board.
The button replaces the "public" permission indicator, because it is
obvious (if the user is not logged in and can view the board, it has to
be public).
|
|
|
|
|
|
| |
The board options does not have valid use case (or even valid values) if
the board is not found (either because the user is not logged in or the
board really does not exists).
|
|
|
|
|
| |
The notification settings are only usefull if there is a current user,
because the email address is required.
|
|
|
|
|
|
|
|
|
|
|
| |
* UI: Fix title of button
The multi selection button should not get the filter description.
* UI: Add title for all buttons in the header bar
This is espectially important for the miniScreen view, because there
is only the icon and no text next to the button.
|
|
|
|
|
|
|
|
| |
This commit also removes the “import a single Trello card” as we couldn’t figure
out some reasonable use case.
We also create a new publication on the server to provide the minimal user
profile informations required to display an avatar.
|
| |
|
|\
| |
| | |
Add notifications, allow watch boards / lists / cards
|
| | |
|
|/
|
|
|
| |
It hides the leading slash treatment as an hidden implementation
detail.
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This bug was introduced with the introduction of fast-render in
41b23f8. With fast-render data is available instantly after the page
logging, but calls to `Meteor.userId()` still return `null` as the
user isn't authenticated on the DDP channel yet (previously the data
was loaded on DDP after user authentication). Which mean that we know
need to reactively activate Drag and Drop on user log in.
I'm not sure why I was not able to reproduce this bug outside of
Sandstorm.
Fixes #453
|
|
|
|
|
|
|
|
|
|
| |
The issue was introduced in 3b2eb0f but was only partially fixed (in
urgency) in 71b9a42. We sould have test to avoid these trivial
regressions! (I guess React will also yelp in this particular case by
removing the need to link the template and the "component", and thus
removing the possibility to break this link)
Fixes #434
|
|\
| |
| |
| |
| | |
Export a board to JSON
Fixes #396
|
| |
| |
| |
| |
| |
| | |
- use an explicit "boards" domain: /api/boards/:boardId
- pass authToken as a request parameter: /api/boards/:boardId?authToken=:token
- in the future, same route can be used with authToken set in the Authenticate: header easily
|
| |\ |
|
| | | |
|
| | | |
|
| |\ \ |
|
| | | | |
|
| | | | |
|
| |_|/
|/| | |
|
| |/
|/| |
|
| |
| |
| |
| | |
The buttons in the board header were not click-able anymore.
|
| |
| |
| |
| |
| | |
This commit also provide a way to escape the Shorcuts page on
Sandstorm.
|
|/
|
|
| |
Fixes #277.
|
| |
|
|
|
|
| |
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.
|
|
|
|
| |
Blaze-components had yet another methods rename.
|
|
|
|
|
|
| |
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()`.
|
|
|
|
|
| |
This change includes method renames and others UI related packages
updates.
|
|
|
|
|
|
|
|
| |
See https://github.com/wekan/wekan/pull/362#issuecomment-149645497
for motivation.
This commit also contains cosmetic changes to the import Popup and
on the code style to be more consistent with the code base.
|
| |
|
|\
| |
| |
| |
| | |
Fix card deletion
This bug was introduced in b3851817.
|
| |
| |
| |
| |
| |
| | |
We need to use "function() {}" instead of the ES6 style "() {}" with
popup.afterCommit because we need the original value of "this" inside
the callback.
|
|/ |
|
|\ |
|
| |
| |
| |
| | |
Fixes #255.
|
|/
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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.
|
| |
|
| |
|
|
|
|
| |
Fixes #280
|
|
|
|
|
|
|
|
|
| |
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).
|
| |
|
| |
|