Commit graph

5667 commits

Author SHA1 Message Date
daniel f2c9d16a42
Merge pull request #2404 from Strubbl/docker-composer-update-1.10.11
docker: update composer to 1.10.11
2020-11-21 20:26:46 -07:00
Daniel Supernault c226086939
Update changelog 2020-11-21 20:25:15 -07:00
Daniel Supernault 7cfae612db
Updated AuthServiceProvider, added support for configurable OAuth tokens and refresh tokens lifetime 2020-11-21 20:24:36 -07:00
daniel 93a76b3c05
Merge pull request #2400 from delthas/feature-tokens-days
Add support for configurable OAuth tokens and refresh tokens lifetime
2020-11-21 20:22:35 -07:00
daniel c465cc93a0
Merge pull request #2399 from delthas/feature-applications-tab
Display the applications tab in the user profile settings sidebar
2020-11-21 20:15:19 -07:00
daniel 45458bd542
Merge pull request #2398 from delthas/feature-password-length
Make the minimum user password length configurable
2020-11-21 20:10:34 -07:00
Daniel Supernault f8dc33cc81
Update InternalApiController 2020-11-21 19:56:25 -07:00
Daniel Supernault e08f646008
Update DiscoverController 2020-11-21 18:58:08 -07:00
Daniel Supernault ad527eb705
Update changelog 2020-11-21 18:34:13 -07:00
Daniel Supernault f1c28e7d0c
Update DirectMessageController, fix pgsql bug 2020-11-21 18:33:22 -07:00
Daniel Supernault fcb785bb0f
Update compiled assets 2020-11-19 02:15:49 -07:00
Daniel Supernault e4e3c21c98
Update DM components 2020-11-19 02:15:07 -07:00
Daniel Supernault 4bfbe7d747
Update change log 2020-11-18 23:45:20 -07:00
Daniel Supernault edcef7b6a5
Update compiled assets 2020-11-18 23:25:21 -07:00
Daniel Supernault 26550d9cb5
Update RemoteProfile, add dm button 2020-11-18 23:20:02 -07:00
Daniel Supernault 9d07071ee0
Update DirectMessageController 2020-11-18 23:12:49 -07:00
Daniel Supernault c12b35f00d
Update compiled assets 2020-11-18 23:12:19 -07:00
Daniel Supernault f796cc7c11
Update DirectMessageController 2020-11-18 23:07:00 -07:00
Daniel Supernault da4c5fb808
Update compiled assets 2020-11-18 20:33:11 -07:00
Daniel Supernault aeeb75597b
Update Direct component 2020-11-18 20:28:39 -07:00
Daniel Supernault 72a1a1ea19
Update AP Inbox, fix url parser 2020-11-18 19:54:09 -07:00
Daniel Supernault 4b90b1e0df
Update DirectMessageController 2020-11-18 19:51:08 -07:00
Daniel Supernault fa8fbb7e86
Update Status model 2020-11-18 19:19:07 -07:00
Daniel Supernault f15b8f8f5a
Update AP Inbox 2020-11-18 19:13:34 -07:00
Daniel Supernault 2e47091e6e
Update Help Center, add direct message section 2020-11-18 19:09:19 -07:00
Daniel Supernault 86765001e6
Update AP Inbox 2020-11-18 19:08:21 -07:00
Daniel Supernault 11a616b67d
Update AP Inbox 2020-11-18 15:29:54 -07:00
Daniel Supernault 8444d2dc50
Update AP Inbox 2020-11-18 15:23:11 -07:00
Daniel Supernault 20749d7c3c
Update AP Inbox 2020-11-18 15:05:34 -07:00
Daniel Supernault 1bbd613621
Update Inbox, add namespaces 2020-11-18 14:52:44 -07:00
Daniel Supernault 327a0e2d7d
Add db migration 2020-11-18 14:45:23 -07:00
Daniel Supernault 4b96315d73
Update compiled assets 2020-11-18 14:41:37 -07:00
Daniel Supernault 5df6a34101
Update web routes 2020-11-18 14:31:59 -07:00
Daniel Supernault d63569c120
Add Direct Messages 2020-11-18 14:19:02 -07:00
Strubbl 8c220b97dd
Update Dockerfile.apache 2020-11-01 21:05:39 +01:00
Daniel Supernault 4d04e4fd25
Update settings view 2020-10-29 17:44:51 -06:00
Strubbl ed7edb8604
Update Dockerfile.apache 2020-10-24 12:41:08 +02:00
Daniel Supernault 8b25932e24
Update compiled assets 2020-09-22 17:00:49 -06:00
Daniel Supernault 3a888886ad
Update changelog 2020-09-22 16:57:08 -06:00
Daniel Supernault 7a62a42a4a
Update PostComponent, fixes #2351 2020-09-22 16:56:14 -06:00
Sven Fischer 5bc96a49e7 docker: update composer to 1.10.12 2020-09-09 18:39:29 +02:00
Daniel Supernault 06f0f80755
Update changelog 2020-09-07 12:44:14 -06:00
Daniel Supernault d1c664fafb
Update Profile component, make modals scrollable 2020-09-07 12:43:35 -06:00
Daniel Supernault 8f53d7b59f
Update compiled assets 2020-09-04 19:18:08 -06:00
Daniel Supernault 36bc4adbe7
Update components 2020-09-04 19:15:26 -06:00
Daniel Supernault ee4ac3ba7f
Update composer deps 2020-09-04 19:05:37 -06:00
delthas 748a3be46d Add support for configurable OAuth tokens and refresh tokens lifetime
Previously, the lifetime of tokens and refresh tokens was hardcoded at
15 and 30 days.

Some instances administrators may wish to change these values.

This makes these two values configurable with the two .env variables:
OAUTH_TOKEN_DAYS and OAUTH_REFRESH_DAYS which are the lifetime in days
for these two tokens and refresh tokens.
2020-08-31 23:16:42 +02:00
delthas 18b12584d7 Display the applications tab in the user profile settings sidebar
Uncomments the link to the working Applications page
2020-08-31 23:04:13 +02:00
delthas 09479c02ca Make the minimum user password length configurable
Previously, all passwords had to be at least 12 characters long.

Some users use a slightly shorter password, so some instances could wish
to reduce the password length limit to a slightly lesser value.

This makes the minimum password length configurable in the .env file,
with the MIN_PASSWORD_LENGTH variable, that defaults to 12 to keep the
previous behaviour by default.
2020-08-31 23:01:01 +02:00
daniel 248dd78ddf
Merge pull request #2394 from pixelfed/staging
Update Profile + Timeline components, simplify UI
2020-08-25 19:07:51 -06:00