Commit Graph

7925 Commits

Author SHA1 Message Date
Julian Lam
32985eb12e Merge remote-tracking branch 'refs/remotes/origin/master' 2020-04-06 21:27:49 -04:00
Julian Lam
7b31fb34a7 fix: missing descriptions for common properties 2020-04-06 21:11:24 -04:00
Barış Soner Uşaklı
9987813f30 feat: add page query param to docs 2020-04-06 21:09:49 -04:00
Barış Soner Uşaklı
bbddaadf51 feat: tag route doc 2020-04-06 21:00:08 -04:00
Julian Lam
03739b6f83 fix: some definitions in read API spec 2020-04-06 10:28:32 -04:00
Julian Lam
455d42bcfa fix: tagged all routes in read api spec 2020-04-03 15:30:50 -04:00
Julian Lam
1136a369f3 feat: local redoc view on development mode only 2020-04-03 14:10:13 -04:00
Julian Lam
7b155dab74 feat: added auto-generated, slimmed-down openapi 3.0 file for read api 2020-04-03 12:07:50 -04:00
Misty (Bot)
bb565b0a81 Latest translations and fallbacks 2020-03-31 09:30:44 +00:00
Misty (Bot)
aabddea2b7 Latest translations and fallbacks 2020-03-24 09:29:53 +00:00
Misty (Bot)
5e849c6b52 Latest translations and fallbacks 2020-03-23 09:29:16 +00:00
Barış Soner Uşaklı
080317300a fix: #8221, fix parent selection 2020-03-22 12:32:12 -04:00
Misty (Bot)
68afd01f67 Latest translations and fallbacks 2020-03-20 09:29:31 +00:00
Barış Soner Uşaklı
0b5fac75b0 fix: #8217, add missing lang key 2020-03-19 10:03:46 -04:00
Misty (Bot)
fc06f90346 Latest translations and fallbacks 2020-03-19 09:30:33 +00:00
Julian Lam
5aa76cdf2f feat: pass in target element in action:topic.tools.load 2020-03-13 10:30:48 -04:00
Barış Soner Uşaklı
2f9c7c626f fix: #8203, fix user invites refreshing page 2020-03-11 12:21:46 -04:00
Misty (Bot)
af5c6b8824 Latest translations and fallbacks 2020-03-10 09:31:44 +00:00
Misty (Bot)
d0075ed9a3 Latest translations and fallbacks 2020-03-06 09:29:55 +00:00
psychobunny
b67af70da4 fix: hsts max-age missing translation 2020-03-05 13:59:10 -05:00
Misty (Bot)
41572be879 Latest translations and fallbacks 2020-03-05 09:30:18 +00:00
Misty (Bot)
22ee2b8d06 Latest translations and fallbacks 2020-03-03 09:30:57 +00:00
Barış Soner Uşaklı
5e91a67e78 feat: add user ip to admin/dev/info 2020-03-02 11:18:15 -05:00
Misty (Bot)
07e7872622 Latest translations and fallbacks 2020-03-01 09:28:56 +00:00
Barış Soner Uşaklı
4083a6e39b feat: add awaitable socket.emit 2020-02-27 19:22:19 -05:00
Barış Soner Uşaklı
6e5de39ba0 fix: also fix updating bookmark if sorting is newest_to_oldest 2020-02-27 18:56:22 -05:00
Barış Soner Uşaklı
32ada7c4e7 fix: #8188, fix bookmark if sorting is newest_to_oldest 2020-02-27 17:21:36 -05:00
Misty (Bot)
53720354de Latest translations and fallbacks 2020-02-27 09:30:23 +00:00
Misty (Bot)
7eb0053bd4 Latest translations and fallbacks 2020-02-26 09:30:45 +00:00
Misty (Bot)
c71e4de8a8 Latest translations and fallbacks 2020-02-25 09:32:00 +00:00
Misty (Bot)
307c72a58b Latest translations and fallbacks 2020-02-24 09:30:52 +00:00
Misty (Bot)
8f2029faed Latest translations and fallbacks 2020-02-23 09:30:04 +00:00
Barış Soner Uşaklı
326367556f fix: tag key 2020-02-22 21:16:51 -05:00
Barış Soner Uşaklı
bc93b5676c fix: #8175 2020-02-22 16:01:04 -05:00
Andrew Rodrigues
3c9689a5ac feat: settings sorted list (#8170)
* feat: settings sorted list

see https://github.com/NodeBB/nodebb-plugin-quickstart/pull/9/files for sample
2020-02-21 12:18:09 -05:00
Misty (Bot)
307f8716b7 Latest translations and fallbacks 2020-02-19 09:31:50 +00:00
Misty (Bot)
316913b9bb Latest translations and fallbacks 2020-02-16 09:29:39 +00:00
Misty (Bot)
f1d58989d8 Latest translations and fallbacks 2020-02-15 09:29:21 +00:00
Barış Soner Uşaklı
067034082f fix: #6422, update deleted/restored messages 2020-02-14 23:26:54 -05:00
Misty (Bot)
20fbab9723 Latest translations and fallbacks 2020-02-14 09:30:37 +00:00
Misty (Bot)
99a3ca7582 Latest translations and fallbacks 2020-02-11 09:30:48 +00:00
Baris Usakli
2e79480179 fix: #8151, don't crash if taskbar doesn't have element 2020-02-07 12:04:37 -05:00
Julian Lam
14655f8745 fix: no decimal places for category analytics 2020-02-07 10:22:13 -05:00
Julian Lam
d6e3f3f058 fix: #8142, broken site if no server-side session (#8148)
* fix: #8142, broken site if no server-side session

During the `addHeader` middleware, a check is now done to see if
`req.session.meta` is present. This value is only present if the user
has a valid server-side session.  If it is missing, then it is probably
safe to assume that the server-side session was deleted (either
intentionally or accidentally). In that scenario, the client-side cookie
should be cleared.

Also, there was an issue where the sessionRefresh flag was never cleared
after a successful login, so that was fixed too.

* feat: exported method to get cookie config

* fix: don't clear cookie if cookie is being set

* fix: socket.io tests

Co-authored-by: Barış Soner Uşaklı <barisusakli@gmail.com>
2020-02-06 15:52:37 -05:00
Misty (Bot)
5ed7fc0ffa Latest translations and fallbacks 2020-01-31 09:30:22 +00:00
Barış Soner Uşaklı
3077eb9428 fix: remove unused conditional, dont add dupe messages 2020-01-21 15:17:31 -05:00
Julian Lam
594cd7e176 fix: #8127 user join system message duplicated
- Now showing user-join message for chat owner in addition to the newly
  added user
- If a modal already exists for a room when createModal is called, don't
  return null, return the modal
2020-01-21 13:57:16 -05:00
Julian Lam
106c141ff5 fix: background-size in taskbar images 2020-01-21 13:57:15 -05:00
Barış Soner Uşaklı
bfaba89557 Merge branch 'master' of https://github.com/NodeBB/NodeBB 2020-01-20 10:59:22 -05:00
Misty (Bot)
ddce77b343 Latest translations and fallbacks 2020-01-20 09:29:52 +00:00