Lauri Ojansivu
3da66a0fe3
Sorted archives Part 2.
...
Thanks to xet7 !
2021-02-02 21:08:34 +02:00
John R. Supplee
e4f50d4713
Hopeful fix for i18n not working in onRendered()
...
* Remove the i18n initialization code from an `autorun()` block
* Add some console statements to help with debugging production.
* Add functions to `Boards` for label colors and color mapping
2021-02-02 17:56:18 +02:00
John R. Supplee
0446999c63
Add new importUsernames field for import user mapping
2021-01-30 02:35:29 +02:00
John R. Supplee
d647884b91
Make sure user data is retrieved before proceeding with import
2021-01-28 18:18:31 +02:00
John R. Supplee
2df0a54cb8
Return CustomFields data for display on minicard
2021-01-27 17:06:57 +02:00
John R. Supplee
78a1d08a17
Bug fixes and buttons for previous and next page
...
* Use buttons for next and previous page in search results
* Add custom routine for stringifying and parsing the selector to JSON
so RegExp objects are preserved
2021-01-27 16:57:31 +02:00
John R. Supplee
4e8fc46475
Start work on paging search results
2021-01-27 02:21:12 +02:00
John R. Supplee
6a32424a08
Add support for searching archived cards
...
* Add logic to search for archived or all cards
* Add icons to board, swimlane and list titles to indicate if they are archived
* Update search instructions
2021-01-26 18:39:09 +02:00
John R. Supplee
f2e7296d19
Remove old session data
2021-01-25 16:12:33 +02:00
John R. Supplee
20ab2f039b
Send more fields to client
2021-01-25 15:55:35 +02:00
John R. Supplee
158a0807d9
Development
...
* Generate error when a comment text is not found
* Save errors to SessionData as objects
* Move all search code to globalSearch publication
* Add more translation tags
2021-01-25 15:39:36 +02:00
John R. Supplee
9b6288e49c
Add session id SessionData
2021-01-24 12:28:36 +02:00
John R. Supplee
907bf4ffdc
Pass found cards in sessionData cursor
2021-01-24 02:32:37 +02:00
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.
2021-01-22 12:49:48 +02:00
John R. Supplee
d74dc92681
Global Search improvements
...
* support for searching from the URL
* add support for searching by assignee and member
2021-01-17 16:01:42 +02:00
John R. Supplee
a3518a3bcf
cleanup
2021-01-16 21:08:15 +02:00
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
2021-01-16 19:26:06 +02:00
Lauri Ojansivu
4115d62bac
Limit amount of data in publications where possible.
...
Thanks to xet7 !
2021-01-16 03:10:20 +02:00
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
2021-01-15 00:33:24 +02:00
John R. Supplee
a647768368
Merge branch 'master' of https://github.com/wekan/wekan into search
2021-01-13 01:29:46 +02:00
John R. Supplee
80b23e5cc1
Global search - add error messages for terms that are not found
2021-01-13 01:14:49 +02:00
John R. Supplee
34000ad159
Move global search to cards model
...
* add some explanation of the operators
2021-01-12 00:48:43 +02:00
John R. Supplee
bbcb236a46
Add methods to models for archived entities
2021-01-11 18:18:26 +02:00
Lauri Ojansivu
801d0aacf0
Due Cards and Broken Cards: In All Users view, fixed to show cards only from other users Public Boards. Not anymore from private boards.
...
Thanks to xet7 !
Related #1667
2021-01-11 05:23:11 +02:00
John R. Supplee
01bd94d2b3
Global search limited working prototype
...
* added publication
* need to filter cards on client side
2021-01-10 22:58:29 +02:00
John R. Supplee
4ebad9efc1
Merge branch 'master' into broken
2021-01-10 18:19:33 +02:00
John R. Supplee
ecc3558987
My Cards and Due Cards development
...
* add spinner while pages are loading
* use a single publication for My Cards
* add Due Cards to the user menu
* add description to the All Users option for Due Cards
* some code clean-up
2021-01-10 18:08:03 +02:00
John R. Supplee
986ab29676
Broken Cards development
...
* fix CSS and formatting
* refine selection criteria
2021-01-10 15:35:16 +02:00
John R. Supplee
4679db6ec4
New Broken Cards page
2021-01-10 00:17:59 +02:00
John R. Supplee
55b121e0d3
Development and fixes to My Cards and Due Cards
2021-01-09 18:36:27 +02:00
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
2021-01-08 21:51:28 +02:00
John R. Supplee
1abdd5177d
Initial work on due cards page
2021-01-07 22:36:10 +02:00
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
2021-01-04 22:08:09 +02:00
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}'
2021-01-04 13:53:08 +02:00
John R. Supplee
7a419c1563
My Cards development
...
* only find client side cards of the user
2021-01-02 00:17:03 +02:00
John R. Supplee
223fb78bd8
Merge branch 'master' of https://github.com/wekan/wekan
2020-12-31 19:15:59 +02:00
John R. Supplee
077e78d37c
My Cards development
...
first prototype
2020-12-31 19:14:55 +02:00
Lauri Ojansivu
d03e2170dd
Allow to edit email verified and initials at Admin Panel/People/People.
...
Thanks to xet7 !
Fixes #1426
2020-12-29 15:33:14 +02:00
Lauri Ojansivu
9e2093d6ae
Teams/Organizations to Admin Panel. In Progress.
...
Thanks to xet7 !
Related #802
2020-12-28 21:08:27 +02:00
Lauri Ojansivu
6801c960b1
Fix typo.
2020-11-10 07:23:59 +02:00
helioguardabaxo
415fac8a25
Add 'Modern Dark' theme
2020-11-08 16:45:15 -03:00
Lauri Ojansivu
4cfddf1d8d
Admin Panel / Settings / Layout / Custom Top Left Corner Logo Height.
...
Thanks to xet7 !
2020-11-02 17:53:01 +02:00
Lauri Ojansivu
d2f434879c
Fix can not upload and download files, by changing back to Node.js 12.19.0 and adding fast-render.
...
Current file storing to MongoDB code was not yet compatible with newer Node.js.
Thanks to eskogito and xet7 !
Fixes #3320
2020-10-30 12:53:41 +02:00
Lauri Ojansivu
a463f2a855
Upgrade to Meteor 2.0-beta.3. Removed fast-render and ostrio:cookies.
...
Thanks to xet7 !
2020-10-28 15:44:47 +02:00
Lauri Ojansivu
1b429b3f99
Fixed: With ORACLE_OIM_ENABLED, allow setting OAUTH2_REQUEST_PERMISSIONS with environment variable.
...
Thanks to xet7 !
2020-10-21 19:20:48 +03:00
Lauri Ojansivu
7223d6e750
At Admin Panel / Layout: Text below custom login logo. Can have markdown formatting.
...
Thanks to xet7 !
2020-10-03 00:21:19 +03:00
Lauri Ojansivu
ec8a78537f
Login with OIDC OAuth2 Oracle on premise identity manager OIM, with setting ORACLE_OIM_ENABLED=true.
...
Thanks to xet7 !
2020-10-02 23:15:39 +03:00
Lauri Ojansivu
3fc80e1145
Better translation: Target URL to Link URL.
2020-09-18 19:20:16 +03:00
Lauri Ojansivu
a7c3317ed6
Custom Logo for Login and Top Left Corner. Optional link when clicking logo. Settings at Admin Panel / Layout.
...
Thanks to xet7 !
Fixes #1493 ,
fixes #2721 ,
fixes #2681 ,
fixes #1583 ,
fixes #1196 ,
fixes #336 ,
fixes wekan/wekan-snap#130
2020-09-18 18:45:48 +03:00
Lauri Ojansivu
214c86cc22
Added some CAS and SAML settings. Not tested. Please test and send pull requests if it does not work.
...
See https://github.com/wekan/wekan/wiki/SAML and https://github.com/wekan/wekan/wiki/CAS
Thanks to xet7 !
Related #3204 ,
related #708
2020-09-14 19:57:50 +03:00