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

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

Add Tag in REST API plugin data structure

Bump version
parent 46c65c36
No related branches found
No related tags found
1 merge request!9Add Tag in REST API plugin data structure
Pipeline #64699 passed
......@@ -2,7 +2,7 @@ from setuptools import find_packages, setup
setup(
name='netbox-rps-plugin',
version='0.5.0-r2',
version='0.5.1',
description='A Netbox plugin to add RPS resources',
install_requires=[],
packages=find_packages('./src'),
......
......@@ -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.5.0-r2'
version = '0.5.1'
author = "Vincent Simonin"
author_email = "vincent.simonin@ext.ec.europa.eu"
base_url = 'rps'
......
......@@ -25,5 +25,5 @@ class MappingSerializer(NetBoxModelSerializer):
model = Mapping
fields = (
'id', 'url', 'display', 'source', 'target', 'authentication', 'testingpage', 'webdav', 'Comment', 'custom_fields', 'created',
'last_updated',
'last_updated', 'tags'
)
......@@ -27,4 +27,3 @@ class MappingFilterForm(NetBoxModelFilterSetForm):
choices=AuthenticationChoices,
required=False,
)
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