Skip to content

Instantly share code, notes, and snippets.

@dayne
Last active August 29, 2015 14:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dayne/91891fdd80e77f0cf773 to your computer and use it in GitHub Desktop.
Save dayne/91891fdd80e77f0cf773 to your computer and use it in GitHub Desktop.
support
# future
if workstation.broken? then call_for_help
# current -- simplified version - just think if we checked and wrote
# out workflow based on the user.workstation type: windows, linux, osx, other
if user.workstation.broken?
if user.institute = GI
then call_for_help("crc")
else
if user.institute.it_guy? then
try call_for_help(user.institute.it_guy)
else
call_for_help("oit")
end
end
end
# future
def call_for_help
create_ticket
assign_ticket
resolve_ticket
distribute_happy
end
# current .... is to insane to even pretend to create a
# pretend codified workflow for.. too many groups with
# different capabilities, staffing, workflows, and goals.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment