Sha256: f12665d2f3929ae2b311dbcc9272408e1e4a22a924293905fa7afa76e1f55144
Contents?: true
Size: 606 Bytes
Versions: 21
Compression:
Stored size: 606 Bytes
Contents
# Copyright 2021 Google LLC # # Use of this source code is governed by an MIT-style # license that can be found in the LICENSE file or at # https://opensource.org/licenses/MIT. class Meeting < ActiveRecord::Base # Returns the meeting time in the local timezone. def local_meeting_time return unless meeting_time && Time.zone meeting_time.in_time_zone Time.zone end # Returns the time of the meeting in the timezone where the meeting is planned. def meeting_time_in_planned_zone return unless meeting_time && meeting_timezone meeting_time.in_time_zone meeting_timezone end end
Version data entries
21 entries across 21 versions & 1 rubygems