Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Verified Commit 38b3f783 authored by Vincent SIMONIN's avatar Vincent SIMONIN
Browse files

Made mapping testing page nullable

parent ac504b17
No related branches found
No related tags found
1 merge request!22Made mapping testing page nullable
Pipeline #71528 passed
......@@ -5,7 +5,7 @@ class NetBoxRpsConfig(PluginConfig):
name = 'netbox_rps_plugin'
verbose_name = 'NetBox RPS'
description = 'A Netbox plugin to add RPS resources'
version = '0.8.2'
version = '0.8.3'
author = "Vincent Simonin"
author_email = "vincent.simonin@ext.ec.europa.eu"
base_url = 'rps'
......
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
('netbox_rps_plugin', '0003_http_header_unique_constraint')
]
operations = [
migrations.AlterField(
model_name='mapping',
name='testingpage',
field=models.CharField(max_length=120, null=True, blank=True),
),
]
......@@ -53,7 +53,8 @@ class Mapping(NetBoxModel):
)
testingpage = models.CharField(
max_length=120,
blank=False,
blank=True,
null=True,
validators=[URLValidator(message='It must be a url')],
)
webdav = models.BooleanField(
......
......@@ -2,7 +2,7 @@ from setuptools import find_packages, setup
setup(
name='netbox_rps_plugin',
version='0.8.2',
version='0.8.3',
description='A Netbox plugin to add RPS resources',
install_requires=[],
packages=find_packages(),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment