Mihail Kirilov

Results 12 issues of 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}} ``` ![Screenshot 2021-11-17 at...

I have Episodes, Materials and Programs that have tags. And I can say ``` tags = ActsAsTaggableOn::Tag.first(2) Episode.tagged_with(tags) Material.tagged_with(tags) Program.tagged_with(tags) ``` Is there a way to make a call that...

Hello, Yesterday we updated our `rails` to `5.2.2` and `acts_as_taggable_on` stopped working. We figured our that dirty dropped a certain @instance_variable that `acts_as_taggable_on` relied on. Which errors in `undefined method...

В [Въведение](https://github.com/BG-IT-Edu/School-Programming/blob/main/Courses/Applied-Programmer/Databases-and-SQL/1.%D0%92%D1%8A%D0%B2%D0%B5%D0%B4%D0%B5%D0%BD%D0%B8%D0%B5-%D0%B2-%D0%B1%D0%B0%D0%B7%D0%B8%D1%82%D0%B5-%D0%BE%D1%82-%D0%B4%D0%B0%D0%BD%D0%BD%D0%B8/01.01.%D0%92%D1%8A%D0%B2%D0%B5%D0%B4%D0%B5%D0%BD%D0%B8%D0%B5-%D0%B2-%D0%91%D0%94-%D1%81-MySQLWorkbench.pdf) Точка 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...