blob: e9821f6d370084123b4405bd621ac90c38365d0c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
class TriggerController < ApplicationController
def voicemail
# Something is triggered when ever a local script fetches this action.
#
end
def fax
# Something is triggered when ever a local script fetches this action.
#
end
end
|