Skip to content

Model Configuration

afterFind()

afterFind() — returns void

Available in: model Category: Callback Functions

Registers method(s) that should be called after an existing object has been initialized (which is usually done with the findByKey or findOne method).

NameTypeRequiredDefaultDescription
methodsstringnoMethod name or list of method names that should be called when this callback event occurs in an object’s life cycle (can also be called with the method argument).
// Instruct CFWheels to call the `setTime` method after getting objects or records with one of the finder methods.
config() {
	afterFind("setTime");
}

function setTime(){
	arguments.fetchedAt = Now();
	return arguments;
}