class DeletePost

Defined in:

operations/delete_post.cr

Constant Summary

ATTRIBUTES = [] of Nil
COLUMN_ATTRIBUTES = [{name: id, type: UUID, nilable: false, autogenerated: true, value: nil, serialized: false}, {name: created_at, type: Time, nilable: false, autogenerated: true, value: nil, serialized: false}, {name: updated_at, type: Time, nilable: false, autogenerated: true, value: nil, serialized: false}, {name: title, type: String, nilable: false, autogenerated: false, value: nil, serialized: false}, {name: body, type: String, nilable: false, autogenerated: false, value: nil, serialized: false}, {name: published_at, type: Time, nilable: false, autogenerated: false, value: nil, serialized: false}, {name: id, type: UUID, nilable: false, autogenerated: true, value: nil, serialized: false}, {name: created_at, type: Time, nilable: false, autogenerated: true, value: nil, serialized: false}, {name: updated_at, type: Time, nilable: false, autogenerated: true, value: nil, serialized: false}, {name: title, type: String, nilable: false, autogenerated: false, value: nil, serialized: false}, {name: body, type: String, nilable: false, autogenerated: false, value: nil, serialized: false}, {name: published_at, type: Time, nilable: false, autogenerated: false, value: nil, serialized: false}] of Nil
OPERATION_NEEDS = [] of Nil

Constructors

Class Method Summary

Instance Method Summary

Macro Summary

Instance methods inherited from class Post::DeleteOperation

attributes attributes, body body, body=(_value) body=, created_at created_at, created_at=(_value) created_at=, delete_status : OperationStatus delete_status, delete_status=(delete_status : OperationStatus) delete_status=, id id, id=(_value) id=, params : Avram::Paramable params, permitted_params permitted_params, published_at published_at, published_at=(_value) published_at=, record : Post record, set_attributes(id : UUID | Avram::Nothing = Avram::Nothing.new, created_at : Time | Avram::Nothing = Avram::Nothing.new, updated_at : Time | Avram::Nothing = Avram::Nothing.new, title : String | Avram::Nothing = Avram::Nothing.new, body : String | Avram::Nothing = Avram::Nothing.new, published_at : Time | Avram::Nothing = Avram::Nothing.new) set_attributes, set_body_from_param(_value) set_body_from_param, set_created_at_from_param(_value) set_created_at_from_param, set_id_from_param(_value) set_id_from_param, set_published_at_from_param(_value) set_published_at_from_param, set_title_from_param(_value) set_title_from_param, set_updated_at_from_param(_value) set_updated_at_from_param, title title, title=(_value) title=, updated_at updated_at, updated_at=(_value) updated_at=

Constructor methods inherited from class Post::DeleteOperation

new(record : T, params : Avram::Paramable, id : UUID | Avram::Nothing = Avram::Nothing.new, created_at : Time | Avram::Nothing = Avram::Nothing.new, updated_at : Time | Avram::Nothing = Avram::Nothing.new, title : String | Avram::Nothing = Avram::Nothing.new, body : String | Avram::Nothing = Avram::Nothing.new, published_at : Time | Avram::Nothing = Avram::Nothing.new)
new(record : T, id : UUID | Avram::Nothing = Avram::Nothing.new, created_at : Time | Avram::Nothing = Avram::Nothing.new, updated_at : Time | Avram::Nothing = Avram::Nothing.new, title : String | Avram::Nothing = Avram::Nothing.new, body : String | Avram::Nothing = Avram::Nothing.new, published_at : Time | Avram::Nothing = Avram::Nothing.new)
new

Class methods inherited from class Post::DeleteOperation

delete(record : T, params, id : UUID | Avram::Nothing = Avram::Nothing.new, created_at : Time | Avram::Nothing = Avram::Nothing.new, updated_at : Time | Avram::Nothing = Avram::Nothing.new, title : String | Avram::Nothing = Avram::Nothing.new, body : String | Avram::Nothing = Avram::Nothing.new, published_at : Time | Avram::Nothing = Avram::Nothing.new, &)
delete(record : T, id : UUID | Avram::Nothing = Avram::Nothing.new, created_at : Time | Avram::Nothing = Avram::Nothing.new, updated_at : Time | Avram::Nothing = Avram::Nothing.new, title : String | Avram::Nothing = Avram::Nothing.new, body : String | Avram::Nothing = Avram::Nothing.new, published_at : Time | Avram::Nothing = Avram::Nothing.new, &)
delete(record : T, params : Hash, **named_args, &)
delete
, delete!(record : T, params, id : UUID | Avram::Nothing = Avram::Nothing.new, created_at : Time | Avram::Nothing = Avram::Nothing.new, updated_at : Time | Avram::Nothing = Avram::Nothing.new, title : String | Avram::Nothing = Avram::Nothing.new, body : String | Avram::Nothing = Avram::Nothing.new, published_at : Time | Avram::Nothing = Avram::Nothing.new)
delete!(record : T, id : UUID | Avram::Nothing = Avram::Nothing.new, created_at : Time | Avram::Nothing = Avram::Nothing.new, updated_at : Time | Avram::Nothing = Avram::Nothing.new, title : String | Avram::Nothing = Avram::Nothing.new, body : String | Avram::Nothing = Avram::Nothing.new, published_at : Time | Avram::Nothing = Avram::Nothing.new)
delete!(record : T, params : Hash, **named_args)
delete!

Constructor Detail

def self.new(record : T, params : Avram::Paramable, id : UUID | Avram::Nothing = Avram::Nothing.new, created_at : Time | Avram::Nothing = Avram::Nothing.new, updated_at : Time | Avram::Nothing = Avram::Nothing.new, title : String | Avram::Nothing = Avram::Nothing.new, body : String | Avram::Nothing = Avram::Nothing.new, published_at : Time | Avram::Nothing = Avram::Nothing.new) #

This is called at the end so @type will be of the subclass, and not the parent abstract class.


def self.new(record : T, id : UUID | Avram::Nothing = Avram::Nothing.new, created_at : Time | Avram::Nothing = Avram::Nothing.new, updated_at : Time | Avram::Nothing = Avram::Nothing.new, title : String | Avram::Nothing = Avram::Nothing.new, body : String | Avram::Nothing = Avram::Nothing.new, published_at : Time | Avram::Nothing = Avram::Nothing.new) #

This is called at the end so @type will be of the subclass, and not the parent abstract class.


Class Method Detail

def self.delete(record : T, params, id : UUID | Avram::Nothing = Avram::Nothing.new, created_at : Time | Avram::Nothing = Avram::Nothing.new, updated_at : Time | Avram::Nothing = Avram::Nothing.new, title : String | Avram::Nothing = Avram::Nothing.new, body : String | Avram::Nothing = Avram::Nothing.new, published_at : Time | Avram::Nothing = Avram::Nothing.new, &) #

This is called at the end so @type will be of the subclass, and not the parent abstract class.


def self.delete(record : T, id : UUID | Avram::Nothing = Avram::Nothing.new, created_at : Time | Avram::Nothing = Avram::Nothing.new, updated_at : Time | Avram::Nothing = Avram::Nothing.new, title : String | Avram::Nothing = Avram::Nothing.new, body : String | Avram::Nothing = Avram::Nothing.new, published_at : Time | Avram::Nothing = Avram::Nothing.new, &) #

This is called at the end so @type will be of the subclass, and not the parent abstract class.


def self.delete(record : T, params : Hash, **named_args, &) #

This is called at the end so @type will be of the subclass, and not the parent abstract class.


def self.delete!(record : T, params, id : UUID | Avram::Nothing = Avram::Nothing.new, created_at : Time | Avram::Nothing = Avram::Nothing.new, updated_at : Time | Avram::Nothing = Avram::Nothing.new, title : String | Avram::Nothing = Avram::Nothing.new, body : String | Avram::Nothing = Avram::Nothing.new, published_at : Time | Avram::Nothing = Avram::Nothing.new) #

This is called at the end so @type will be of the subclass, and not the parent abstract class.


def self.delete!(record : T, id : UUID | Avram::Nothing = Avram::Nothing.new, created_at : Time | Avram::Nothing = Avram::Nothing.new, updated_at : Time | Avram::Nothing = Avram::Nothing.new, title : String | Avram::Nothing = Avram::Nothing.new, body : String | Avram::Nothing = Avram::Nothing.new, published_at : Time | Avram::Nothing = Avram::Nothing.new) #

This is called at the end so @type will be of the subclass, and not the parent abstract class.


def self.delete!(record : T, params : Hash, **named_args) #

This is called at the end so @type will be of the subclass, and not the parent abstract class.


Instance Method Detail

def delete_status : OperationStatus #

def delete_status=(delete_status : OperationStatus) #

def params : Avram::Paramable #

def record : Post #

def set_attributes(id : UUID | Avram::Nothing = Avram::Nothing.new, created_at : Time | Avram::Nothing = Avram::Nothing.new, updated_at : Time | Avram::Nothing = Avram::Nothing.new, title : String | Avram::Nothing = Avram::Nothing.new, body : String | Avram::Nothing = Avram::Nothing.new, published_at : Time | Avram::Nothing = Avram::Nothing.new) #

This is called at the end so @type will be of the subclass, and not the parent abstract class.


Macro Detail

macro param_key(key) #