Thomas Chopitea
Thomas Chopitea
Hey @doomedraven this is #379, right?
That's a lot of feature requests :) > Pivoting on tags This could be easily done by adding the tag as a filter in the `Browse` view. Replacing the whole...
Yes, this would be a good addition.
I see what you're trying to do, but this should be taken care of by the `normalize()` method in `url.py` When you call `Url.get_or_create`, `YetiDocument.get_or_create` is called, which calls the...
I agree. But there's a regular regex and a search regex that is used to extract URLs from larger strings. Anyways, another quick workaround would be to manually create an...
The code you're suggesting would be way better placed as an override of the `clean()` method in `url.py`: ```python def clean(self): self.normalize() if not self.check_type(self.value): raise ObservableValidationError(...) ```
If you know what type of data you're getting beforehand (as is probably the case when creating a new feed), you should be using `URL()` or [add_text](https://github.com/yeti-platform/yeti/blob/master/core/observables/observable.py#L121) and not `from_string`,...
Hey, are you OK to make the requested changes in this PR?
Here's what I think we could build: * Create a feed for Yeti that sends hashes to MRF and gets data that it can store back. Have this feed running...
I agree that this might be a case of data duplication, but we need a way to store the actual samples for people that don't use MRF. The logic to...