AlwaysHungry
AlwaysHungry
How can I customize when I approve a model and manually assign the user for moderated_by like $model->moderated_by = 'String user id' ?
I've been following this video series and I happen to realize that I need to log my test results just like I do when building apps but it wasn't mentioned...
```clojure (defn read-csv [path as-vector?] (let [rows (csv-reader/read-csv path) final-rows (if (true? as-vector?) (vectorize-rows rows) rows)] (csv-reader/close! rows) final-rows)) ``` I have this function called but when I try to...