mirror of
http://ghproxy.cn/https://github.com/multunus/onemdm-server
synced 2025-12-06 02:04:57 +00:00
8 lines
131 B
Ruby
8 lines
131 B
Ruby
class AppsController < ApplicationController
|
|
before_action :authenticate_device
|
|
|
|
def index
|
|
render json: App.all
|
|
end
|
|
end
|