Gregor Mitzka

Results 14 comments of Gregor Mitzka

Okay, I tried successfully to adjust it for SQLite3 and it was quite easy: - ~I prefixed the column names with a single character: `0_post_key` got `a0_post_key`~ - => get...

@pascalbaljet Nice to see that you engage with this case. Thanks a lot!

Hej Tacruc, thanks for your quick response. Actually I thought about something like the unified search provider for this issue. But I am not sure how an NC app could...

I started a discussion in the NextCloud forum on this topic because currently I don't know the best practices in NextCloud for this kind of problem: https://help.nextcloud.com/t/make-custom-app-api-available-via-custom-provider/144543

@eneiluj I didn't talk about the `IRegistrationContext` of NC itself but about a Maps related own interface in the way that the interface of NC works. But: I think the...

@eneiluj My bad. No, unfortunally I am not in Berlin at the conference. Maybe we can meet up at some other time and place.

@ben221199 Good question. I haven't checked this yet but might do it later today. I will keep you updated!

Okay, did a quick check. Currently it seems like routes from Laravel JSON api are not cached at all. Therefore it seems to be a bug, because caching my routes...

This is my `RouteServiceProvider` (extract): ```php class RouteServiceProvider extends ServiceProvider { public function boot() { Route::prefix('api') ->middleware('api') ->group(function () { $this->getJsonApiServer()->resources(function ( ResourceRegistrar $server ) { $callback = require_once( base_path('routes/api/v1.php')...

Okay, if we keep the ability to cache routes in mind, then my proposed approach will not work. But maybe it is possible to add a "tagged" "dummy middleware" and...