mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 03:54:59 +08:00
22 lines
240 B
Ruby
22 lines
240 B
Ruby
# frozen_string_literal: true
|
|
|
|
require "has_errors"
|
|
|
|
class PostActionResult
|
|
include HasErrors
|
|
|
|
attr_accessor :success
|
|
|
|
def initialize
|
|
@success = false
|
|
end
|
|
|
|
def success?
|
|
@success
|
|
end
|
|
|
|
def failed?
|
|
!success
|
|
end
|
|
end
|