mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-07-13 06:34:42 +00:00
add webterminal
This commit is contained in:
parent
f45690b34f
commit
c50cdd2976
1
.gitignore
vendored
1
.gitignore
vendored
@ -14,3 +14,4 @@ migrations/
|
|||||||
.idea/
|
.idea/
|
||||||
db.sqlite3
|
db.sqlite3
|
||||||
config.py
|
config.py
|
||||||
|
*/migrations/*
|
||||||
|
0
apps/webterminal/__init__.py
Normal file
0
apps/webterminal/__init__.py
Normal file
3
apps/webterminal/admin.py
Normal file
3
apps/webterminal/admin.py
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
from django.contrib import admin
|
||||||
|
|
||||||
|
# Register your models here.
|
7
apps/webterminal/apps.py
Normal file
7
apps/webterminal/apps.py
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
|
from django.apps import AppConfig
|
||||||
|
|
||||||
|
|
||||||
|
class WebterminalConfig(AppConfig):
|
||||||
|
name = 'webterminal'
|
5
apps/webterminal/models.py
Normal file
5
apps/webterminal/models.py
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
|
from django.db import models
|
||||||
|
|
||||||
|
# Create your models here.
|
3
apps/webterminal/tests.py
Normal file
3
apps/webterminal/tests.py
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
from django.test import TestCase
|
||||||
|
|
||||||
|
# Create your tests here.
|
3
apps/webterminal/views.py
Normal file
3
apps/webterminal/views.py
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
from django.shortcuts import render
|
||||||
|
|
||||||
|
# Create your views here.
|
Loading…
Reference in New Issue
Block a user