Wykres commitów

1930 Commity (dev)

Autor SHA1 Wiadomość Data
Daniel Supernault 3686c92122
Update Status storage, add SanitizerService to fix spacing in html stripped content 2025-09-14 07:02:12 -06:00
Daniel Supernault ec21eec508
Update ApiV1Dot1Controller, fix Story report follower check 2025-09-03 03:09:44 -06:00
Daniel Supernault f195102b34
Update StoryApiV1Controller, reduce min story size to 10kb 2025-09-03 02:47:53 -06:00
Daniel Supernault 5d4674daa4
Update ApiV1StoryController, fix viewer pagination
Fix cursor pagination
2025-09-01 06:13:55 -06:00
(dan)iel (sup)ernault 2e0b3829a3
Merge pull request #6081 from eufelipemateus/adjust-oderby-statuses-profile
fix: ordery by statutes profile
2025-09-01 04:31:40 -06:00
Daniel Supernault 32b1f26d69
Update StoryApiV1Controller, update error messsage 2025-08-31 18:51:12 -06:00
Daniel Supernault 8fb44e3162
Update StoryApiV1Controller, improve text overlay validation regex for improved support 2025-08-31 18:49:02 -06:00
Daniel Supernault 76d9ded694
Update StoryApiV1Controller, add missing validation rule 2025-08-31 18:32:11 -06:00
Daniel Supernault 6c701b335d
Update StoryComposeController, add StoryIndexService support 2025-08-30 05:27:14 -06:00
Daniel Supernault 97badbbdd6
Update StoryApiV1Controller, add new v1.2 endpoints 2025-08-30 04:56:02 -06:00
Daniel Supernault 44914a5143
Update StoryController, add StoryIndexService s markSeen support for webUI endpoint 2025-08-30 04:24:44 -06:00
Daniel Supernault d361b0dca0
Update StoryView resource, include viewed_at timestamp 2025-08-29 23:32:28 -06:00
Daniel Supernault f5dced0f7a
Update ApiV1Dot1Controller, add story report support 2025-08-27 00:10:21 -06:00
Daniel Supernault 35424ccb4d
Update HomeSettings, remove unnecessary relation query 2025-08-20 02:58:44 -06:00
Daniel Supernault 86af73455f
Update DirectMessageController, add mutuals endpoint 2025-08-13 05:48:01 -06:00
Daniel Supernault d42c25ca64
Update DiscoverController 2025-08-13 00:19:50 -06:00
Daniel Supernault c319dfbcc4
Update AppRegister controller, add scheduled cleanup task to delete older than 90d 2025-08-08 05:39:39 -06:00
Daniel Supernault 3977137d02
Update AppRegisterController 2025-08-08 05:25:34 -06:00
Felipe Mateus 11a5fa9314
fix: ordery by 2025-07-22 08:31:57 -03:00
Daniel Supernault 062ec55207
Update DangerZone middleware to skip sudo mode for OIDC configurations. Fixes #6057 2025-07-16 18:02:36 -06:00
Daniel Supernault e56bcf3853
Update ComposeController, fix postgres operator 2025-07-16 02:58:29 -06:00
Daniel Supernault 2a9c28b81e
Update ComposeController, fix user tagging endpoint 2025-07-16 02:53:47 -06:00
Daniel Supernault 10eb1a8acb
Update ComposeController, prioritize followed users and follower_count first 2025-07-15 18:13:10 -06:00
Daniel Supernault b6bc1e50e2
Update Admin Users dashboard 2025-06-11 06:21:38 -06:00
Daniel Supernault 56f909a61b
Update ComposeController, add addl compose settings data 2025-06-05 00:49:17 -06:00
Daniel Supernault 1cb01545bc
Update ComposeController, add addl compose settings data 2025-06-05 00:47:49 -06:00
Daniel Supernault 9048ab52c2
Update ComposeController, add addl compose settings data 2025-06-05 00:39:20 -06:00
Daniel Supernault 1c66cf7fef
Update CuratedRegisterController 2025-06-03 13:30:16 -06:00
Daniel Supernault ece23d751b
Update Places, improve cache invalidation/ttl 2025-05-16 03:46:42 -06:00
Daniel Supernault f81a4acdc6
Update PlaceController, fix show method 2025-05-16 03:00:35 -06:00
Daniel Supernault 9d89425e62
Update StoryController, fix intervention/image 2025-05-16 01:54:52 -06:00
Daniel Supernault 86fbeeec35
Update StoryComposeController, fix intervention/image v3 support 2025-05-16 01:53:29 -06:00
Daniel Supernault 7f7387ee4d
Update StatusController, fix mimeTypeCheck 2025-05-14 04:58:26 -06:00
Daniel Supernault 4747266b04
Update ApiV1Controller, fix cache invalidation order 2025-05-14 01:47:46 -06:00
Daniel Supernault ae47ba73d6
Update ComposeController, fix cache invalidation order 2025-05-14 01:36:03 -06:00
Daniel Supernault 4e938a8ffa
Fix heic, avif, webp support and add libvips driver 2025-05-13 03:53:22 -06:00
Daniel Supernault ab9c13fe0d
New supported formats, Preserve ICC Color Profiles, libvips support
Update image pipeline to handle avif, heic and webp and preserve ICC color profiles and added libvips support.
2025-05-13 01:59:54 -06:00
Daniel Supernault 5a3a1cf76c
Update remove_from_followers api endpoint 2025-05-02 01:26:36 -06:00
daniel 92482c24cd
Merge pull request #5895 from eufelipemateus/feat-remove-follow
[Improvement] Add button remove follow
2025-05-02 01:14:54 -06:00
Daniel Supernault 26887c7672
Update OIDC config with comments, and disable tests as we dont have db tests configured 2025-05-02 00:40:12 -06:00
Gavin Mogan 70584b47c5 Fixes for items highlighted by review.ai
* Consider using `hash_equals()` instead of `==` when comparing the state values to prevent timing attacks:
`abort_unless(hash_equals($request->input('state'), $request->session()->pull('oauth2state')), 400, 'invalid
state');`
* For better data integrity, consider adding a foreign key constraint to the user_id column: `$table-
>foreign('user_id')->references('id')->on('users')->onDelete('cascade');`
* Does the OIDC provider guarantee that the username field exists in the userInfo data? Consider adding a
null check or fallback: `$userInfoData[config('remote-auth.oidc.field_username')] ?? null`
2025-04-24 21:28:44 -07:00
Gavin Mogan 441c8e0d4c Generic OIDC Support
* Everything should be configurable by env variables
* Basic request tests
2025-04-24 21:28:44 -07:00
Mackenzie Morgan 9966260a91 use case insensitive search when tagging accounts 2025-04-19 12:41:53 -04:00
Felipe Mateus fed800acfb
Merge branch 'dev-contrib-origin' into feat-remove-follow 2025-04-14 09:45:34 -03:00
Daniel Supernault fc77a98f7b
Update CustomFilterController, remove statuses check as we dont support them yet 2025-04-14 05:34:51 -06:00
Daniel Supernault 5f5ed1e62d
Update ComposeController, fix tag mention bug. Closes #5885 2025-04-14 04:52:53 -06:00
Daniel Supernault 5a32bfe304
Update ApiV1Controller, add Custom Filters to home/public and hashtag feeds 2025-04-14 04:50:33 -06:00
Daniel Supernault c4a96da019
Update CustomFilterController, improve case-insentive handling, mastoAPI compatibility and custom config limits 2025-04-14 04:45:09 -06:00
Daniel Supernault b86102823b
Update CustomFilter model and CustomFilterController 2025-04-14 01:18:14 -06:00
Daniel Supernault 168816db2d
Update CustomFilterController 2025-04-14 00:30:53 -06:00