Mihail Kirilov
Mihail Kirilov
Hello we are trying to write an ability for a model which accepts_nested_attributes. And I was wondering if CanCanCan can do this. Our check is simple: `parent: { nested: {...
This does not work: ``` sign_in_and_redirect user, notice: "Signed in successfully!" ``` But normal redirect works ``` redirect_to root_path, notice: "Signed in successfully" ``` Rails guides: https://guides.rubyonrails.org/action_controller_overview.html#the-flash ``` devise 4.8.1...
``` release: if: github.ref == 'refs/heads/main' name: "Release" needs: [build] runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - uses: akhileshns/[email protected] with: heroku_api_key: ${{secrets.HEROKU_API_KEY}} heroku_app_name: ${{secrets.HEROKU_APP_NAME}} heroku_email: ${{secrets.HEROKU_EMAIL}} ```  Точка 12 казва: > 12* Генериране на SQL скрипт Генерирайте SQL скрипт от базата данни училище. Прегледайте скрипт файла и опитайте да разберете
Could it be made to run the tool on the whole project. We have a big project and we want to format it with the tool. The only way is...
Hello, I am trying to upload multiple images using the client side, and after that linking them with paperclip. I am using s3_direct_upload which gives me the url where the...
This has been done here: https://github.com/argerim/select2-rails/pull/197 We are not working with v4, so I think it would be better to add it to 3-5 stable
Hello, I would like to use range with go.Bar and datetime. From the docs https://plotly.com/python/reference/layout/yaxis/#layout-yaxis-range I should provide range with start and end in str. ``` range=[str(datetime.time(hour=0)), str(datetime.time(hour=10))], ``` But...