class TimeLogRobot::Tagger

Public Class Methods

tag(entry) click to toggle source
# File lib/time_log_robot/tagger.rb, line 4
def tag(entry)
  case entry
  when Toggl::Entry
    Toggl::Tagger.update(entry_id: entry.id)
  end
end