ForageWeb.ForageController.forage_select_data

You're seeing just the function forage_select_data, go back to ForageWeb.ForageController module for more information.
Link to this function

forage_select_data(paginated)

Renders paginated data into a shape that the select widget expects.

This function returns a map. The user must use the JSON encoder in the Phoenix application to generate a JSON response.

It would be more succint to return JSON directly from this function, but Forage has no way of invoking the application's JSON encoder, so we leave that responsibility to the user.

Examples:

TODO

Link to this function

forage_select_data(paginated, converter)

Renders paginated data into a shape that the select widget expects. Takes in either a field name (text_field) or a converter function to convert the entries into text.

This function returns a map. The user must use the JSON encoder in the Phoenix application to generate a JSON response.

It would be more succint to return JSON directly from this function, but Forage has no way of invoking the application's JSON encoder, so we leave that responsibility to the user.

Examples:

TODO