-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[v1.2.0] Merge pull request #31 from KageRyo/develop
Update to RyoURL v1.2.0
- Loading branch information
Showing
12 changed files
with
206 additions
and
167 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
default_app_config = 'shortURL.apps.ShortURLConfig' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,16 @@ | ||
from django.contrib import admin | ||
from .models import Url | ||
from django.contrib.auth.admin import UserAdmin | ||
from .models import Url, User | ||
|
||
class UrlAdmin(admin.ModelAdmin): | ||
list_display = ('orign_url', 'short_string', 'short_url', 'create_date', 'expire_date', 'visit_count') | ||
list_display = ('orign_url', 'short_string', 'short_url', 'create_date', 'expire_date', 'visit_count', 'user') | ||
|
||
admin.site.register(Url, UrlAdmin) | ||
class CustomUserAdmin(UserAdmin): | ||
list_display = ('username', 'email', 'first_name', 'last_name', 'is_staff', 'user_type') | ||
list_filter = UserAdmin.list_filter + ('user_type',) | ||
fieldsets = UserAdmin.fieldsets + ( | ||
('Additional Info', {'fields': ('user_type',)}), | ||
) | ||
|
||
admin.site.register(Url, UrlAdmin) | ||
admin.site.register(User, CustomUserAdmin) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,61 @@ | ||
# Generated by Django 4.2 on 2024-07-18 07:46 | ||
# Generated by Django 4.2 on 2024-08-05 06:06 | ||
|
||
import datetime | ||
from django.conf import settings | ||
import django.contrib.auth.models | ||
import django.contrib.auth.validators | ||
from django.db import migrations, models | ||
import django.db.models.deletion | ||
import django.utils.timezone | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
initial = True | ||
|
||
dependencies = [ | ||
('auth', '0012_alter_user_first_name_max_length'), | ||
] | ||
|
||
operations = [ | ||
migrations.CreateModel( | ||
name='User', | ||
fields=[ | ||
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), | ||
('password', models.CharField(max_length=128, verbose_name='password')), | ||
('last_login', models.DateTimeField(blank=True, null=True, verbose_name='last login')), | ||
('is_superuser', models.BooleanField(default=False, help_text='Designates that this user has all permissions without explicitly assigning them.', verbose_name='superuser status')), | ||
('username', models.CharField(error_messages={'unique': 'A user with that username already exists.'}, help_text='Required. 150 characters or fewer. Letters, digits and @/./+/-/_ only.', max_length=150, unique=True, validators=[django.contrib.auth.validators.UnicodeUsernameValidator()], verbose_name='username')), | ||
('first_name', models.CharField(blank=True, max_length=150, verbose_name='first name')), | ||
('last_name', models.CharField(blank=True, max_length=150, verbose_name='last name')), | ||
('email', models.EmailField(blank=True, max_length=254, verbose_name='email address')), | ||
('is_staff', models.BooleanField(default=False, help_text='Designates whether the user can log into this admin site.', verbose_name='staff status')), | ||
('is_active', models.BooleanField(default=True, help_text='Designates whether this user should be treated as active. Unselect this instead of deleting accounts.', verbose_name='active')), | ||
('date_joined', models.DateTimeField(default=django.utils.timezone.now, verbose_name='date joined')), | ||
('user_type', models.IntegerField(choices=[(1, '一般使用者'), (2, '管理員')], default=1)), | ||
('groups', models.ManyToManyField(blank=True, help_text='The groups this user belongs to. A user will get all permissions granted to each of their groups.', related_name='user_set', related_query_name='user', to='auth.group', verbose_name='groups')), | ||
('user_permissions', models.ManyToManyField(blank=True, help_text='Specific permissions for this user.', related_name='user_set', related_query_name='user', to='auth.permission', verbose_name='user permissions')), | ||
], | ||
options={ | ||
'verbose_name': 'user', | ||
'verbose_name_plural': 'users', | ||
'abstract': False, | ||
}, | ||
managers=[ | ||
('objects', django.contrib.auth.models.UserManager()), | ||
], | ||
), | ||
migrations.CreateModel( | ||
name='Url', | ||
fields=[ | ||
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), | ||
('oriUrl', models.CharField(max_length=200)), | ||
('srtUrl', models.CharField(max_length=200)), | ||
('creDate', models.DateTimeField(verbose_name='創建日期')), | ||
('orign_url', models.URLField()), | ||
('short_string', models.CharField(default='NULL', max_length=10, unique=True)), | ||
('short_url', models.URLField()), | ||
('create_date', models.DateTimeField(default=datetime.datetime.now)), | ||
('expire_date', models.DateTimeField(blank=True, null=True)), | ||
('visit_count', models.IntegerField(default=0)), | ||
('user', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)), | ||
], | ||
), | ||
] |
29 changes: 0 additions & 29 deletions
29
RyoURL/shortURL/migrations/0002_alter_url_credate_alter_url_oriurl_alter_url_srturl.py
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.