Sha256: f82d54ad019bcdd404cd4d2d1e01b2d662df069892fcf5cb3eadd9095716969e

Contents?: true

Size: 285 Bytes

Versions: 1

Compression:

Stored size: 285 Bytes

Contents

module ActiveCrudify
  module HookMethods
    private

      def before_create
        before_action
      end

      def before_update
        before_action
      end

      def before_destroy
        before_action
      end

      def before_action
        true
      end

  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
active_crudify-0.1.1 lib/active_crudify/hook_methods.rb