trestle
trestle copied to clipboard
A modern, responsive admin framework for Ruby on Rails
Hello! Using newest hotwire branch - I have some problems with code reloading. Gemfile: ```ruby gem 'trestle', branch: 'hotwire', git: 'https://github.com/TrestleAdmin/trestle.git' gem 'trestle-auth', branch: 'hotwire', git: 'https://github.com/TrestleAdmin/trestle-auth.git' ``` Imagine that...
Is there a way to force the view to refresh the tab/table under a dialog box after it is saved? This would also tie into the idea that after an...
I don't know what the reasoning is but on rails prod "eager_load" is true. And there is code here: https://github.com/TrestleAdmin/trestle/blob/main/lib/trestle/engine.rb#L41 Which in that case will not load the routes. This...
I'm trying to create an entity. Locally it works as it should, I launched a local production environment and it also works. On The stage server sends only GET at...
Hi! I am working on adding "Reset password" to trestle-auth provided login page. During that I have discovered that my simple controller is not being connected. First I wanted to...
I have a nested resource in my application. It uses a model called Valuation, which renders multiple tabs. One of these tabs shows financial data (Valuation has_many Financials), and I...
It looks like the default `destroy` action is broken. Nothing happens when I click on the button in the form view of my user entity. The confirmation pop up is...
Great admin system! I'm loving it so far! I do have a bit of a headache with the config though. As I'm using esbuild and propshaft I can't use pre-processing...
I started my app with Sprockets and replaced it with Propshaft. I now have a problem adding to `trestle/custom.js`. I can see there is the possibility to add javascripts through...
Closes #529 ## About This change adds initial support for [Content-Security-Policy](https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Headers/Content-Security-Policy) provided by Rails. This primarily focuses on nonces which are necessary to avoid `unsafe-inline`. For scripts this is more...