UI/Save.aspx

This commit is contained in:
Thomas G 2022-08-07 04:17:34 +10:00
parent e1a002bdb5
commit e471acc17c
3 changed files with 22 additions and 1 deletions

View File

@ -70,4 +70,9 @@ class ClientController extends Controller
{
return view('client.insertasset');
}
public function modelupload()
{
return view('client.modelupload');
}
}

View File

@ -0,0 +1,15 @@
@extends('layouts.idenosidebar')
@section('title')
<title>{{ env('APP_NAME') }}</title>
@endsection
@section('titlediscord')
<meta content="{{env('APP_NAME')}}" property="og:title" />
@endsection
@section('descdiscord')
<meta content="ARCHBLOX" property="og:description" />
@endsection
@section('content')
<h1>Upload Model</h1>
<p>This page is disabled as you cannot currently upload models.</p>
@endsection

View File

@ -86,4 +86,5 @@ Route::get('/IDE/ClientToolbox.aspx', [App\Http\Controllers\ClientController::cl
Route::get('/UploadMedia/PostImage.aspx', [App\Http\Controllers\ClientController::class, 'postimage'])->name('postimage');
Route::get('/UploadMedia/UploadVideo.aspx', [App\Http\Controllers\ClientController::class, 'uploadvideo'])->name('uploadvideo');
Route::get('/Game/KeepAlivePinger.ashx', [App\Http\Controllers\ClientController::class, 'keepalive'])->name('keepalive');
Route::get('/Game/Tools/InsertAsset.ashx', [App\Http\Controllers\ClientController::class, 'insertasset'])->name('insertasset');
Route::get('/Game/Tools/InsertAsset.ashx', [App\Http\Controllers\ClientController::class, 'insertasset'])->name('insertasset');
Route::get('/UI/Save.aspx', [App\Http\Controllers\ClientController::class, 'modelupload'])->name('modelupload');