mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-25 14:48:44 +08:00
12 lines
265 B
Ruby
Vendored
12 lines
265 B
Ruby
Vendored
# frozen_string_literal: true
|
|
|
|
module PageObjects
|
|
module Components
|
|
class TopicAdminMenu < Base
|
|
def click_set_topic_timer
|
|
find(".admin-topic-timer-update button").click
|
|
PageObjects::Modals::EditTopicTimer.new
|
|
end
|
|
end
|
|
end
|
|
end
|