Adrian Marin
Adrian Marin
My bad on the naming suggestion. We need to change the configuration name before releasing the next version.
If someone tried to use a non-existent `:string` field (`field :name, as: :string`), Avo should give the appropriate error that it doesn't have a string field.
Related: - https://github.com/avo-hq/avo/issues/3342 - https://github.com/avo-hq/avo/commit/231d96996053cefa72c97f3113232c101fbde03a ## Possible approach We make use of code in [this area](https://github.com/avo-hq/avo/blob/main/app/components/avo/index/resource_table_component.rb#L47) to essentially run `Avo::Index::TableRowComponent.new(resource: ...)` and use that in a new controller method that...
# Description *Needs finishing up* # Checklist: - [ ] I have performed a self-review of my own code - [ ] I have commented my code, particularly in hard-to-understand...
### Feature Traditionally we used https://github.com/varvet/pundit to implement authorization in Avo which is a great and simple solution but we've seen customers (and myself) needing to reach for a built-in...
### Feature This is still to be discovered but the gist is that we'd love to offer some tools to folks to do some standard operations and collaboration for resources....
### Context We have it up and running as a PoC on [avodemo](https://avodemo.com/avo/resources/posts/45/edit). ```[tasklist] ### Checklist - [ ] docs - [ ] authorization is not working and it's ok...
Let's add SQLite to our CI pipeline. Just with rails main, not with all the variants. Also, let's monitor to see if the tests run faster. If so, maybe we...
# Description This PR will add the plugin generator to Avo #### Still to do - [ ] finish the component templates - [ ] add the text field templates...
### Context `OpenStruct` seems to be "deprecated" and not that performant. Let's try to replace it with `Data` (carefull. it's not mutable).