Skip to content

Commit

Permalink
Merge f8e7dd4 into fa9f518
Browse files Browse the repository at this point in the history
  • Loading branch information
sunny4381 committed Apr 20, 2023
2 parents fa9f518 + f8e7dd4 commit 8307d59
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/models/ezine/page.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class Ezine::Page
include Cms::Lgwan::Page

field :test_delivered, type: DateTime
field :completed, type: Boolean, default: false
field :completed, type: ::Mongoid::Boolean, default: false
embeds_many :results, class_name: "Ezine::Result"

store_in_repl_master
Expand Down
2 changes: 1 addition & 1 deletion app/models/gws/affair/overtime_day_result.rb
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class Gws::Affair::OvertimeDayResult
field :start_at, type: DateTime
field :end_at, type: DateTime

field :is_holiday, type: Boolean
field :is_holiday, type: ::Mongoid::Boolean
field :duty_day_time_minute, type: Integer
field :duty_night_time_minute, type: Integer
field :leave_day_time_minute, type: Integer
Expand Down
2 changes: 1 addition & 1 deletion app/models/webmail/mail.rb
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class Webmail::Mail
field :references, type: SS::Extensions::Words
field :content_type, type: String
field :subject, type: String
field :has_attachment, type: Boolean
field :has_attachment, type: ::Mongoid::Boolean
field :disposition_notification_to, type: Array, default: []

permit_params :reply_uid, :forward_uid, :in_reply_to, :references,
Expand Down

0 comments on commit 8307d59

Please sign in to comment.