Christian

Results 17 comments of Christian

Hi, is there a documentation for this feature? i could find nothing in the [docs](https://guides.rubyonrails.org/configuring.html#configuring-active-storage) my app: `rails 7.0.3` user.rb `has_one_attached :avatar, key: 'avatars/:id/avatar'` => returns: ArgumentError (unknown keyword: :key):

@mpapis Many thanks! `rvm1-capistrano3 ` solved my problem

Thanks Thomas, yes, thats what i meant. except one thing: i also had the idea of a configuration for a individual ``'path/to/folder'``. that would be rails-like. but, what not is...

@stepozer Thanks a lot, worked for me (Redmine 4.1.1)

**UPDATE** now i've made my own soulution. it works very stable and handles all exeptions (Connection to FileMaker and FileMaker-Script-Errors) may it help someone. --- **config/filemaker.yml** ``` domain: xxx timelog_scan:...

Hi ginjo, thanks for your reply! my "problem" is solved, it's the method above 'class FmScript', and it works fine. The idea was to implement this in your gem, to...

similar case with `:update` and `:edit`, see my [Stackoverflow issue](https://stackoverflow.com/questions/77073767/prohibit-update-in-cancan-conflicting-with-edit). Reason for this behaviour is described at [cancancan docs](https://github.com/CanCanCommunity/cancancan/blob/develop/docs/define_check_abilities.md#can-actions). @durierem: Could it be a workaround to put another `can :new...

Same like in my case: The first `can ...` has a lot of logic that i dont want to touch.

I set up a new project, just for testing this. In a current project, I have read-only permissions through a form with a `disabled=true` and forbidden `:update` action. ## can...

I understand the argument that `:edit` and `:update` are closely verbs. But either they are the same then aliases should work in both directions consequently, but that would break thousands...