KodeStar
KodeStar
The front end I'm working on allows you to cache all the files. Currently the way it works is on the overview page there is a download button, if it's...
Yeah, I planned to look into it, will add it to the projects board so I don’t forget
I have the app running as a PWA, https://audioserve.coderior.com/ but it does bring some of it's own issues. 1. A PWA *must* run on https, which means the server it...
Actually the fix is in app/Models/UserMeta.php ``` public function user() { return User::where('id', $this->user_id)->first(); } ``` should be ``` public function user() { return $this->belongsTo(User::class); } ```
Might be helpful to add a comment on why this will work better.
Hi Ivan, I'm just heading out to a wedding, but I'll take a look when I get back. My guess is it's because I'm just passing the url that's returned...
Ok, I *think* there are 3 options for this. 1. The server allows the token to be sent as part of the url so ?trans=m&token=whateverthetokenis 2. I do a fetch...
It’s not fetch request, it’s currently just setting the audio src to the path returned by the api. Interceptors would work if I was using fetch, and I might try...
iirc localhost is accepted, but other domains aren't
Potentially you could get round it by putting them on subdomains of the same main domain, so host the client at https://client.audiosilo.app and the server on https://audioserve.audiosilo.app, then I think...