Sha256: 7301988985015c30e7003ee18b7d021b9c84eff5b37541e83d27ccc81b0271fe
Contents?: true
Size: 334 Bytes
Versions: 12
Compression:
Stored size: 334 Bytes
Contents
# frozen_string_literal: true module Osso module Models class RedirectUri < ActiveRecord::Base belongs_to :oauth_client # TODO # before_validation :set_primary, on: :creaet, :update private def set_primary if primary_was.true? && primary.false? end end end end end
Version data entries
12 entries across 12 versions & 1 rubygems