John R. Supplee
b249fcbb2e
Use the copyBoard method to duplicate a board
...
* Use `copyBoard` instead of `cloneBoard` to duplicate a board
* Give duplicated boards a unique title by appending number
4 years ago
John R. Supplee
ff8a36653a
Use a Meteor call to copy a board
...
The current method was to copy a board on the client side. But
not all data was available for copying rules. Moving the copy
function to the server side solves this problem.
4 years ago
John R. Supplee
1c7a9e4de8
Copy rules, triggers and actions when copying a board
4 years ago
John R. Supplee
fc0ee2e41b
Global search add sort operator
...
* Add sort operator
* add 'overdue' value to 'due' operator
4 years ago
John R. Supplee
319783b008
Global search: add new operators
...
* add operators for due, created and modified
4 years ago
John R. Supplee
61c691a267
Add support for clicking label names and board titles
4 years ago
John R. Supplee
52f920db12
Add clickable list titles
4 years ago
John R. Supplee
27d05ee828
Copy custom fields to new board
4 years ago
John R. Supplee
e1192d1200
Issue #3445 Custom field definitions duplicated on copy and move
...
Check the *to* board to see if it has a custome field of the same name
and type. If it does use that custome field definition.
4 years ago
Lauri Ojansivu
56a530058b
Export to Excel XLSX. Does work, but does not export all fields yet correctly. In Progress. Part 2.
...
Thanks to xet7 !
4 years ago
Lauri Ojansivu
855151a8d1
Export to Excel XLSX. Does work, but does not export all fields yet correctly. In Progress.
...
Thanks to gameendman, alfredgu and xet7 !
Related #3173
4 years ago
John R. Supplee
e463f79532
Correctly import Trello dropdown custom fields
4 years ago
Martin Filser
4cbc3cb71f
Cards, custom fields are displayed in alphabetic order
...
This should fix #3367
4 years ago
John R. Supplee
b793716e85
Trello custom field import basically working
4 years ago
Lauri Ojansivu
413f91d0c8
Reverted Cards, custom fields are displayed in alphabetic order from Wekan v4.71
...
https://github.com/wekan/wekan/pulls/3417 because it caused board not loading.
Thanks to olivierlambert and xet7 !
Fixes #3367
4 years ago
John R. Supplee
c89a0eb694
Initial work on import of custom fields from Trello
...
* start adding import functionality
* Add checkbox type to customFields
4 years ago
Lauri Ojansivu
0d5f33299e
Fixed Linked card makes board not load when CustomField definition is undefined.
...
Thanks to olivierlambert and xet7 !
Fixes #3367
4 years ago
John R. Supplee
b5124d0f6a
cleanup debug code
4 years ago
John R. Supplee
d74dc92681
Global Search improvements
...
* support for searching from the URL
* add support for searching by assignee and member
4 years ago
Lauri Ojansivu
be03d2ae9a
Fixed: Linked card makes board not load.
...
Thanks to akitzing, galletl, pdonias, olivierlambert and xet7 !
Fixes #3367
4 years ago
John R. Supplee
7b8d67de63
Global search - fix label not found
4 years ago
John R. Supplee
ff626fb559
Add a new SessionData collection and limit user fields
...
* Add new SessionData collection to store user session data available to
server and client
* Limit the Users fields sent to the client by `myCards`, `dueCards`,
`brokenCards`, and `globalSearch` using new `Users.safeFields`
* clean-up
4 years ago
John R. Supplee
a56d47c768
Global search fixes
...
* use @ and # as the abbrevs for the user and list operators
* comment out debug code
* Modify display of card result counts
* Fix bug with publication not returning current user document
4 years ago
John R. Supplee
3214800741
Global search display total hits
...
* modify User model to store some session data for searches
* Display total hits in search results
4 years ago
John R. Supplee
39ac19db20
Fix search returning data for all users
4 years ago
John R. Supplee
391c0606d1
Comment out debug statements
4 years ago
John R. Supplee
25dc779a73
Global search development
...
* Add translation tags
* Use translation tags for showing result count
* Add logic for selecting cards by labels
* Readd code for searching card text that was mistakenly deleted
4 years ago
John R. Supplee
80b23e5cc1
Global search - add error messages for terms that are not found
4 years ago
John R. Supplee
4ab1a04814
Global search add swimlane functionality
...
* streamline code
* fix bug in swimlane lookup
4 years ago
John R. Supplee
2e17f2b4b9
Global search development
...
* Add text query ability
* limit results to 50
* display results count
4 years ago
John R. Supplee
34000ad159
Move global search to cards model
...
* add some explanation of the operators
4 years ago
John R. Supplee
bbcb236a46
Add methods to models for archived entities
4 years ago
John R. Supplee
0e1c510948
My Cards: fix bug when null board, swimlane, or list
...
* Add new functions to model card for retrieving associated board,
swimlane, or list with default values
* Use new card model methods
4 years ago
Lauri Ojansivu
c7f260d030
Fix lint errors.
4 years ago
Martin Filser
163e4c8060
Cards, custom fields are displayed in alphabetic order
...
- until now the order is undefined, it's different from card to card,
it's the order in which the custom fields were added to the card.
4 years ago
John R. Supplee
5e68362352
My Cards page development
...
* rename `findCards()` to `myBoards()`
* return model objects for Boards, Swimlanes, Lists, and Cards.
Previously created a data structure with limited properties.
* Sort the myBoards data structure according to the `sort` property
* add a `swimlane()` method in the cards model
4 years ago
John R. Supplee
e793e71163
Reformat My Cards page
...
* make the page more visually pleasing
* user +viewer to display Markdown in titles
* modify `colorClass()` in Lists model to return 'list-header-{color}'
* modify `colorClass()` of Swimlanes model to return 'swimlane-{color}'
4 years ago
Lauri Ojansivu
d03e2170dd
Allow to edit email verified and initials at Admin Panel/People/People.
...
Thanks to xet7 !
Fixes #1426
4 years ago
Lauri Ojansivu
9e2093d6ae
Teams/Organizations to Admin Panel. In Progress.
...
Thanks to xet7 !
Related #802
4 years ago
Lauri Ojansivu
61ae62a83a
Board: When removing member from board, remove also from assignees.
...
Admin Panel/People: 1) Allow edit user that does not have email address.
2) When creating new user, require username and email address, and save also fullname.
3) Some in progress code for deleting user, that does not work correctly yet, so deleting user is not enabled yet.
Thanks to airtraxx and xet7.
Related #3396
4 years ago
Daniel Eder
6bd7f40511
Treat unknown attachment types as binary on board import/clone
...
Fixes missing attachments and even missing
4 years ago
Daniel Eder
b777f7f2af
Fix not all checklist items being imported/cloned
5 years ago
Daniel Eder
0c12c45080
Fix missing subtasks when cloning board
5 years ago
Daniel Eder
a6c48329ef
Fix missing assignee assignment when cloning or importing board
5 years ago
Daniel Eder
a3cd1b89ff
Fix missing member assignments when cloning board
5 years ago
Daniel Eder
7a08f42edb
Fix missing custom fields when cloning board
5 years ago
Lauri Ojansivu
36e29a405e
REST API: Added file download URL to listing of attachments of a board. Part 2.
...
Thanks to xet7 !
Related #1482
5 years ago
Lauri Ojansivu
2ec53b27d1
REST API: Added file download URL to listing of attachments of a board.
...
Thanks to xet7 !
Related #1482
5 years ago
Lauri Ojansivu
0b43e8b42a
Remove old text.
5 years ago
Lauri Ojansivu
bf94161f30
REST API: List attachments of a board.
...
For using this, Python code example:
https://github.com/wekan/wekan/wiki/New-card-with-Python3-and-REST-API
Thanks to xet7 !
Related #1482
5 years ago