class GdsApi::Panopticon

def update_artefact(id_or_slug, artefact)

def update_artefact(id_or_slug, artefact)
  self.class.logger.warn(
    "The update_artefact method is deprecated and may be removed in a " +
    "future release. You should use put_artefact instead."
  )
  put_artefact(id_or_slug, artefact)
end