Commit 83e2e624 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Mention methods that should be implemented inside service

parent 54d04532
...@@ -28,15 +28,23 @@ class Service < ActiveRecord::Base ...@@ -28,15 +28,23 @@ class Service < ActiveRecord::Base
end end
def title def title
# implement inside child
end end
def description def description
# implement inside child
end end
def to_param def to_param
# implement inside child
end end
def fields def fields
# implement inside child
[] []
end end
def execute
# implement inside child
end
end end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment