Sha256: fa3a7ac74aae193591ad626d33bd9546dde8ec5fcd07d94a697d384dd320af85
Contents?: true
Size: 1.38 KB
Versions: 4
Compression:
Stored size: 1.38 KB
Contents
# frozen_string_literal: true module MediaWiktory::Wikipedia module Actions # Revert a file to an old version. # # Usage: # # ```ruby # api.filerevert.filename(value).perform # returns string with raw output # # or # api.filerevert.filename(value).response # returns output parsed and wrapped into Response object # ``` # # See {Base} for generic explanation of working with MediaWiki actions and # {MediaWiktory::Wikipedia::Response} for working with action responses. # # All action's parameters are documented as its public methods, see below. # class Filerevert < MediaWiktory::Wikipedia::Actions::Post # Target filename, without the File: prefix. # # @param value [String] # @return [self] def filename(value) merge(filename: value.to_s) end # Upload comment. # # @param value [String] # @return [self] def comment(value) merge(comment: value.to_s) end # Archive name of the revision to revert to. # # @param value [String] # @return [self] def archivename(value) merge(archivename: value.to_s) end # A "csrf" token retrieved from action=query&meta=tokens # # @param value [String] # @return [self] def token(value) merge(token: value.to_s) end end end end
Version data entries
4 entries across 4 versions & 1 rubygems