mario-nt
mario-nt
Hi! I want to use the three icons used in the demo (System, light and dark SVG icon) for a project:  I want to ask if they are included...
When trying to compile the project with rustc 1.78.0-nightly (a165f1f65 2024-03-12) we get the following error :  The project runs fine with the stable version.
Parent issue: #39 Handlers that require an optional user ID, check if the user found in the bearer token exists in the database in the handler, however, for handlers that...
We are getting this CI error due to the ordered-multimap package:  I think it has been fixed in the v0.7.0, but we are using the 0.6.0. The dependency tree...
Update deps. Resolves #515 Resolves #558
The size of the elements of the torrents lists page needs to be adjusted, their size is too small when using a high resolution monitor (e.g. 2560x1440p), leaving a lot...
When clicking on any opened dropdown element, the element shold be closed, instead, left clicking on it does nothing, and the user has to click somewhere else to close that...
Some of the E2E tests have the same code for the registration and login of users: ```ts let registration_form: RegistrationForm; before(() => { registration_form = random_user_registration_data(); cy.register_as_admin_and_login(registration_form); }); after(() =>...
There are several unwraps that lack error handling in the authorization logic when unwrapping the maybe_user_id variable, this PR fix that by handling the errors.