mirror of https://github.com/jumpserver/jumpserver
				
				
				
			
		
			
				
	
	
		
			25 lines
		
	
	
		
			903 B
		
	
	
	
		
			Python
		
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			903 B
		
	
	
	
		
			Python
		
	
	
# Generated by Django 3.2.19 on 2023-07-13 06:59
 | 
						|
 | 
						|
from django.db import migrations
 | 
						|
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
    dependencies = [
 | 
						|
        ('authentication', '0020_connectiontoken_connect_options'),
 | 
						|
    ]
 | 
						|
 | 
						|
    operations = [
 | 
						|
        migrations.AlterModelOptions(
 | 
						|
            name='connectiontoken',
 | 
						|
            options={'ordering': ('-date_expired',),
 | 
						|
                     'permissions': [('expire_connectiontoken', 'Can expire connection token'),
 | 
						|
                                     ('reuse_connectiontoken', 'Can reuse connection token')],
 | 
						|
                     'verbose_name': 'Connection token'},
 | 
						|
        ),
 | 
						|
        migrations.AlterModelOptions(
 | 
						|
            name='superconnectiontoken',
 | 
						|
            options={'permissions': [('view_superconnectiontokensecret', 'Can view super connection token secret')],
 | 
						|
                     'verbose_name': 'Super connection token'},
 | 
						|
        ),
 | 
						|
    ]
 |