Skip to content
This repository has been archived by the owner on Aug 28, 2024. It is now read-only.

Update app.rb #57

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions app.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ class Contact < ActiveRecord::Base
self.table_name = 'salesforce.contact'
end

#get "/contacts" do
# @contacts = Contact.all
# erb :index
#end
get "/contacts" do
@contacts = Contact.all
erb :index
end

get "/create" do
dashboard_url = 'https://dashboard.heroku.com/'
Expand Down