Kapil
Kapil
Why not provide a form for API params rather than forcing them to be defined in routes using `ApiTaster.routes` ?
In Rails 7, `datetime` column comments are being converted into `timestamptz`. Is this expected behavior? Important to note that `timestamptz` is the underlying PostgreSQL table column, that we are using....
I am using the following row type - https://github.com/clayallsopp/formotion/wiki/List-of-all-the-row-types#check When I select a row, it crashes the app. Here's the error stack - ``` ruby (main)> 2014-04-24 21:08:35.444 Doorman[52317:70b] kvo.rb:77:in...
I am curious why this change was made? - `Changed async reindex to fetch ids instead of using ranges for numeric primary keys with Active Record` ...and if it's possible...
I had reported this issue in your internal chat via intercom, and it was acknowledged as an issue by someone at Timber, but after that havent seen any response, so...
Adding this gem in development breaks the following ```ruby # Highlight code that triggered database queries in logs. config.active_record.verbose_query_logs = true ``` So basically it stops showing the source line...
- Does `backup-push` need any local/temp storage, even if the destination for the backup is S3 bucket? If that's the case is it possible to configure the path of this...
Seeing the following error. Is this not supported on Rails 5.2? ``` NoMethodError (undefined method `arel_attributes_with_values_for_create' for #) ```
Is there a way to add scope to relationship, so something like this Serializer: ```ruby class CompanySerializer include FastJsonapi::ObjectSerializer has_many :employees_temp, scope: ->(record) { record.employees.temp }, serializer: EmployeeSerializer has_many :employees_full_time,...