Kingsley Simon
Kingsley Simon
So i have the following model ``` class Category include Mongoid::Document field :slug, type: String embeds_many :translations embeds_many :segments accepts_nested_attributes_for :translations, :reject_if => :all_blank, :allow_destroy => true end ``` and...
I am trying to implement Apple SSO using the `omniauth_apple` gem in Ruby on Rails. In my devise.rb, i have the following config ``` config.omniauth :apple, Rails.application.credentials.dig(Rails.env.to_sym, :apple_sso, :client_id), '',...
I am trying to take my documentation out of my controller not sure if this possible and how to do it. so sample Controller has this ``` class VI::SomeController <...
Is it possible to keep the selected item and the 'Select Your Organization' static during scroll and only the list should scroll during search? I know this might be a...