2022-01-01 13:38:12 +00:00
|
|
|
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
|
2017-01-26 10:02:06 +00:00
|
|
|
|
|
|
|
class VersionController < ApplicationController
|
2020-03-19 09:39:51 +00:00
|
|
|
|
|
|
|
prepend_before_action { authentication_check && authorize! }
|
2017-01-26 10:02:06 +00:00
|
|
|
|
|
|
|
# GET /api/v1/version
|
|
|
|
def index
|
|
|
|
render json: {
|
|
|
|
version: Version.get
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|