7 lines
188 B
Ruby
Executable File
7 lines
188 B
Ruby
Executable File
class ContactoDePreferenciaController < ApplicationController
|
|
def index
|
|
@contactos_de_preferencia = ContactoDePreferencia.all
|
|
render :json => @contactos_de_preferencia
|
|
end
|
|
end
|