Add new SAML Configuration for a Mapping
1 unresolved thread
1 unresolved thread
Mapping can now have SAML Coniguration:
- Only API was implemented
Merge request reports
Activity
Filter activity
requested review from @veniela
assigned to @simovin
requested review from @delasda
72 ordering = ("source", "target") 69 73 70 74 def __str__(self): 71 return f'{self.source}' 75 return f"{self.source}" 72 76 73 77 def get_absolute_url(self): 74 return reverse('plugins:netbox_rps_plugin:mapping', args=[self.pk]) 78 return reverse("plugins:netbox_rps_plugin:mapping", args=[self.pk]) 79 75 80 76 def get_authentication_color(self): 77 return AuthenticationChoices.colors.get(self.authentication) 81 class SamlConfig(NetBoxModel): 82 acs_url = models.CharField( 83 max_length=2000, changed this line in version 3 of the diff
mentioned in commit 91debd9f
Please register or sign in to reply